📄️ Hello World!
JavaScript programs can be inserted almost anywhere into an HTML document using the `` tag.
📄️ Use Strict (Modern Mode)
JavaScript evolved without compatibility issues. New features were added to the language while old functionality didn’t change.
📄️ Variables
A variable is a “named storage” for data. We can use variables to store goodies, visitors, and other data.
📄️ Data Types
There are 8 basic data types in JavaScript.
📄️ Type Conversions
Most of the time, operators and functions automatically convert the values given to them to the right type.
📄️ Basic operators, maths
Operator Precedence
📄️ Comparisons
String Comparison
📄️ Function Expressions
Function Declaration:
📄️ Arrow Functions
There’s another very simple and concise syntax for creating functions, that’s often better than Function Expressions.