"JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, single-threaded, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles."
- excerpt from MDN docs. Click here to read more
Variables are containers that hold reusable data
3 ways to declare (create) a variable:
Variable Assignment
The declared variable is assigned data using the assignment operator "=". The value of the assigned data can be any of the following
Check out the MDN Docs for info on Bitwise Operators
What is Strict Mode?
Strict mode allows you to place a program or function in a 'strict' operating context
Declaring Strict Mode
Add the "use strict" directive at the top of a script or a function
Changes/Benefits of Strict Mode
- excerpt from MDN docs. Click here to read more