代码以 (
开头
;(function () {
console.log(‘hello‘)
})()
以 [
开头
;[‘苹果‘, ‘香蕉‘].forEach(function (item) {
console.log(item)
})
代码以`
开头
;`hello`.toString()
结论:无论你的代码是否有分号,都建议如果一行代码是以 (
、[
、`
开头的,则最好都在其前面补上一个分号。
原文地址:https://www.cnblogs.com/L-xmin/p/12405565.html
时间: 2024-10-09 14:51:23