JavaScript – Reserved Keywords
Reserved Keywords in JavaScript The reserved keywords in JavaScript are predefined keywords used to serve the built-in functionality of the programming language. For example, the var and let keywords are used to define variables, the function keyword is used to define the functions, etc. JavaScript contains more that fifty reserved keywords. In simple terms, you can’t use the reserved keywords as an identifier. […]