这会触发 ASI(自动分号插入)吗?
if (abc === def) {
doSomething();
} // <-- here
else {
doDifferently();
}
try {
doSomething();
} // <-- here
catch(e) {
doCatch();
}
这会触发 ASI(自动分号插入)吗?
if (abc === def) {
doSomething();
} // <-- here
else {
doDifferently();
}
try {
doSomething();
} // <-- here
catch(e) {
doCatch();
}