- Home
- /
- Tutorials
- /
- JavaScript Tutorial
- /
- JavaScript Keywords
JavaScript Statement & Expression
JavaScript Keywords
JavaScript keywords are reserved words that have a special meaning in JavaScript.
These words are already used by JavaScript for specific tasks, so you cannot use them as variable names, function names, or object names.
Example
Example
javascript
let name = "Amit";Here, let is a JavaScript keyword. It is used to declare a variable.
What are Keywords?
Keywords are special words that JavaScript understands.
Each keyword has a fixed purpose.
Example
javascript
