JavaScript Keywords

Notes:

JavaScript Keywords

JavaScript Keywords:
Keywords are reserved words.
Their meaning and purpose is already defined within the JavaScript.
Keywords must be written in lower case letters.
Keywords should not be used as identifiers or user defined names.
For naming variables, constants, arrays, functions, objects, etc. do not use keywords

Ex (25+):
typeof
var const null undefined
true false
if else switch case
for while do in
break continue
function return default
try catch throw finally
new delete this instanceof
void with

Interview Questions: