📦primary expression

the simplest expressions. (literal, keyword, variable, global object property)

JSstatementexpression ⟩ primary

an expression that doesn't include any simpler expressions, they are:

// examples
123          // ⭐️ literal
null         // ⭐️ keyword (reference)
name         // ⭐️ variable (reference)
undefined    // ❗️ global object property (reference)

Last updated