Week 2 - Session 1 - JavaScript Fundamentals
Values: there are two types of values in JavaScript, literal values (Numbers, Strings, Booleans, Arrays, Objects), and variable values (var, const, and let).
Operators: these are special symbols that are used to combine two values and create a new one. Arithmetic, String, Logical, Comparison, and Assignment operators.
Expressions: an expression is a combination of literal values, variables, and operators, which evaluates to a single value.
Keywords: these are basically reserved words that perform special actions and cannot be used as variable names.
JavaScript statements can be grouped together in blocks using curly braces ({}). Blocks are normally found in functions, if-statements, and loops.
Introduction to JavaScript on Codecademy - https://www.codecademy.com/learn/introduction-to-javascript