摘要:
使用~function(){}()也是声明并调用函数的方法之一:这是一段使用~function(){}()来声明函数并调用函数的例子: ~function() { alert(typeof next) // undefined ~function next() { alert(typeof next) // function }() }();把外层换成(function(){})()如下: (function() { alert(typeof next); // undefined (function next() { alert(typ... 阅读全文