function bark() {console.log('Woof!')
}
bark.animal = 'dog'
A: 失常运行!
B: SyntaxError. 你不能通过这种形式给函数减少属性。
C: undefined
D: ReferenceError
参考答案:
function bark() {console.log('Woof!')
}
bark.animal = 'dog'
A: 失常运行!
B: SyntaxError. 你不能通过这种形式给函数减少属性。
C: undefined
D: ReferenceError
参考答案: