🌎
web.dev
CtrlK
  • 🌏web.dev
  • ⚙️tools
  • 🔰HTML
  • 🔰CSS
  • 🍒JS
    • 💡tips
    • 🧚technique
    • ⭐feature
    • 🔰concept
    • 🔰compilation
    • 🔰grammar
    • 🔰scope
    • 💍value
    • 🔰variable
    • 🔰module
    • 🔰iteration
    • 🔰async code
    • 🔰debugging
    • ⛔Error
      • 🔴compile-time error
      • 🔴runtime error
      • ⛔️ SyntaxError
        • ⛔duplicate parameter not allowed in strict mode❗️
        • ⛔unexpected token "xxx"❗️
        • ⛔Named export 'xxx' not found❗️
        • ⛔unexpected number❗️
        • ⛔... parenthesis must be used to disambiguate operator precedence❗️
        • ⛔identifier 'xxx' has already been declared❗️
        • ⛔missing initializer in const declaration❗️
        • ⛔lexical declaration cannot appear in a single-statement context❗️
        • ⛔delete of an unqualified identifier in strict mode❗️
        • ⛔octal literals not allowed in strict mode❗️
      • ⛔️ ReferenceError
      • ⛔️ TypeError
    • 🏛️Libraries
    • 🛠️tools
    • ✨examples
    • 💼projects
  • 🔰web component
  • 🌐browser
  • 🔰React
  • Server
  • 🔖附錄
    • 👔custom
    • 🧩three.js
    • 🅰️Google Apps Script
    • 📖JSDoc
    • 📦data structure
    • 🔰algorithm
    • 🔰paradigm
    • 🔰TypeScript
    • 💎resource
Powered by GitBook
On this page

Was this helpful?

  1. 🍒JS
  2. ⛔Error

⛔️ SyntaxError

🚧 under construction

JS ⟩ error ⟩ SyntaxError

🚧

  • duplicate parameter not allowed in strict mode❗️

  • unexpected token "xxx"❗️

  • unexpected number❗️

  • missing initializer in const declaration❗️

  • identifier 'xxx' has already been declared❗️

  • lexical declaration cannot appear in a single-statement context❗️

  • delete of an unqualified identifier in strict mode❗️ - can't delete variables.

  • octal literals not allowed in strict mode❗️

Previousruntime errorNextduplicate parameter not allowed in strict mode❗️

Last updated 3 years ago

Was this helpful?