🚧 施工中
Last updated 2 years ago
Was this helpful?
JS ⟩ grammar ⟩ statement vs. declaration
statements and declarations are two disjoint sets of grammars.
the following are (9) declarations:
let, const
let
const
function, function*
function
function*
async function, async function*
async function
async function*
class
export, import (can only appear at the top-level of a module)
export
import
everything else in this list is a statement.
statement vs. declaration
var is a statement
let/const is a declaration.
👉 statement expected❗️
declaration: binding identifier to value.
statement: carrying out actions.
Difference between statements and declarations ⭐️⭐️⭐️ ❗️❗️❗️
ECMA ⟩
Statement
Declaration