JS Language
Summary An overview of JavaScript syntax. If you are a beginner, read this before the JS Algos file.
Variables, Types, and Comments JavaScript stores information (called values) within let and const variables – const variables cannot be changed, but let variables can be reassigned later. Variables can contain booleans (true or false), strings (of text), or numbers, or have null or undefined values. Booleans, strings, numbers, null, and undefined are called types, and can be detected by the typeof command.