「浪語」:修訂間差異

無編輯摘要
無編輯摘要
無編輯摘要
標籤2017 原始碼編輯
第231行: 第231行:
later 3000 f // 不會被呼叫,因為 f 被 auto lift,又被包了一層 function 在外面
later 3000 f // 不會被呼叫,因為 f 被 auto lift,又被包了一層 function 在外面
later 3000 f() // 這樣才會在三秒後印出 hello world
later 3000 f() // 這樣才會在三秒後印出 hello world
later 3000 () => console.log("hello world") // 但這個會正常運作
later 3000 () => console.log("hello world") // parse error, 3000() is not a function call
later 3000; () => console.log("hello world") // works, good
later 3000; (a, b) => console.log("hello world") // fine, too
later 3000 console.log("hello world") // 這個也會正常運作
later 3000 console.log("hello world") // 這個也會正常運作
later 3000 {
later 3000 {
153

次編輯