有些事情像
f.call(...)
f.apply(...)
但是,这是
(1, alert)('Zomg what is this????!!!11')
在这种情况下,“ 1”似乎没有多大意义,以下工作正常:
(null, alert)('Zomg what is this????!!!11')
(1, null, alert)('Zomg what is this????!!!11')
(undefined, alert)('Zomg what is this????!!!11')
您能否指向ECMAScript的描述该语法的特定部分?
暮色呼如
慕码人2483693
相关分类