🔰statements that must end with ";"
🚧 施工中
JS ⟩ grammar ⟩ token ⟩ semicolon ⟩ statements end with ";"
some statements must be terminated with semicolon (;) :
let,const, variable statementimport,export, module declarationexpression statement
debuggercontinue,break,throw
these statements are affected by automatic semicolon insertion (ASI).
return is affected by automatic semicolon insertion.
Last updated
Was this helpful?