JavaScript – Comments
JavaScript comments are used to create notes about what the code block does and how it works, and can also be used to temporarily prevent code execution.
JavaScript – Basic Syntax
JavaScript syntax is the set of rules concerning how the code blocks should be constructed for proper execution.
JavaScript – Outputting Content to the Browser
JavaScript can be used to change data on the page, rewrite the entire page, create popup alerts, write to the console for testing, or print the page.
JavaScript – Using Variables
In JavaScript, variables are used to store data that will be used in multiple places. This allows the data to be kept in one place for ease of change.
JavaScript – Doing Math, Assignment, and Comparison
JavaScript has numerous operators that can be used, in part, to do mathematical calculations, assign values to variables, and compare values.
JavaScript – Working with Data Types
JavaScript has 8 Datatypes: String, Number, Bigint, Boolean, Undefined, Null, Symbol, and Object.
JavaScript – Working with Functions
JavaScript functions are blocks of code designed to perform a particular task when called by another piece of code at some point after creation.
JavaScript – Creating an Object
JavaScript objects are variables that can contain many values, and are created using the object literal, the new keyword, or using an object constructor.
JavaScript – Object Properties and Methods
JavaScript object properties can be changed, added, deleted, and mad read only. Object methods are actions that can be performed on objects.
JavaScript – Displaying Object Properties
JavaScript object properties can be displayed according to name, within a loop, using Object.values(), or using JSON.stringify().
JavaScript – Using Object Constructors
When many JavaScript objects of the same type need to be created, an “object type” can be be created using an object constructor function.
JavaScript – The “this” Keyword in Objects
In JavaScript, the this keyword is used to refer to various objects.
JavaScript – Destructuring Objects
In JavaScript Objects, unpacking the object properties into variables is called destructuring.
JavaScript – Object Iterations
In JavaScript, there are numerous ways to iterate though the properties of an object.
JavaScript – Object Management
In JavaScript, there are numerous methods used to manage an object by accessing, changing, or returning properties.
JavaScript – Object Accessors
In JavaScript, getters and setters allow you to define Object Accessors (Computed Properties).
JavaScript – Object Protection
In JavaScript, there are numerous ways to protect an Object from being changed.

