是否有必要在函数定义的末尾添加分号,如下所示
function helloWorld() {
//some code
}; //note the semicolon here at the end is it ever necessary? Ever
我有一个朋友发誓这是可选的。我认为它永远不是可选的我从来没有读过任何关于它在函数末尾是可选的。我从来没有见过任何人做过“除了他”。分号是可选的。
var hellWorld = function (){
}; // the semicolon here it is optional because you are defining a variable this is OK and optional