Articles in this series
What are conditionals? A conditional regulates behavior and decides whether or not certain bits of code can be executed. Types of...
There are five data types in JavaScript, and they are: Strings In my previous posts on JS Basics, I discussed strings. Strings are data, embedded...
Functions A function instructs a machine to perform a specific action. Functions can accept arguments to supply the computer with more...
What is a variable? You can use a variable to make several references to the same piece of data. Variables are defined in JavaScript using the var...