node.js 分号问题
js 是可以省略分号的,但要注意以下几种情况
function say() { console.log('hello world') } say() ;(function () { console.log('hell') })() ;['苹果','香蕉'].forEach(function (item) { console.log(item) }) ;`hello`.toString()
以:
- ()
- []
- ``
开头会报错,需要在这些符号前添加分号(;),或者添加 “!” 和 “~”,一般建议添加分号。