function foo() {
bar() // A
} // B
通常在哪一行(些)代码后加分号?
function foo() {} // A
const foo = function () {} // B
通常在哪一行(些)代码后加分号?
while (a > 0) a-- // A
while (a > 0) {
a-- // B
} // C
分号在
function f() {
return
{
a: 1 // (A)
}
}
const result = f();
会发生什么?
const arr = Object.keys({a: 1, b: 2, c: 3})
[1].forEach(x => console.log(arr[x]))