为什么在 JavaScript 中你可以在没有 的情况下调用函数;
?
例子
假设 testMethod 在某处声明...
testMethod();
testMethod() // Without semicolon will still work.
还在元素示例中调用方法:
<input type="button" onclick="testMethod();" />
<input type="button" onclick="testMethod()" /> // Again no semicolon.