在一个快递应用程序中,我能够做到这一点
function donothing() {
}
donothing()
但不是这个
(function donothing() {
})()
第二个样本失败
TypeError: undefined is not a function
这是为什么?
在一个快递应用程序中,我能够做到这一点
function donothing() {
}
donothing()
但不是这个
(function donothing() {
})()
第二个样本失败
TypeError: undefined is not a function
这是为什么?