JavaScript

There are loads of different programming languages out there and they all basically do the same thing: allow you to write programs that get the computer to do what you want it to do. All programming languages contain the same core concepts (variables, functions, loops, conditional statements, etc) but they all have slightly different ways of expressing these concepts, which is to say, they all have different syntax and APIs. Although any solid programming language could be used for anything (whether you're creating a website, or an iPhone app, or a video game, or a robot) some languages have special features that make them better suited for certain contexts or tasks. Different languages also have different communities of developers writing libraries and frameworks for that language.

Although JavaScript is not the only programming language we can use on the Internet, it's definitely the most popular, which means there's a large community creating libraries, tutorials and answering questions online. Furthermore, although JavaScript can be used for everything from controlling robots to scripting PhotoShop, it was originally invented as a programming language for the Web specifically, and so it's obviously the natural choice for us.

[Netscape, 1995] displayed Web pages that were not very lively. You could have a nice cartoon of a monkey on the Web page, but there was no way to make the monkey dance when you moved over it with your mouse. Figuring out how to make that happen was the job of a language developer named Brendan Eich. He sat down and in a few weeks created a language called JavaScript [...] as browsers proliferated and the Web grew from a document-delivery platform into a software-delivery platform, JavaScript became, arguably, the most widely deployed language runtime in the world. If you wrote some JavaScript code, you could run it wherever the Web was—everywhere.

Paul Ford, from What Is Code in Bloomberg Business (2015)

For a more thorough review of the core programming concepts discussed below (as they appear in the JavaScript language), consider reading the first few chapters from Marijn Haverbeke's book Eloquent JavaScript (4th edition 2024) as well as the Mozilla Developer Network's JavaScript language overview.

Core Concepts

Data Structures

It's possible to store more than one value in the same variable. These variables become "data structures" the most fundamental of which is called an object which is the 6th and final "data type" in JavaScript, refer to variables (simple data types) in the Core Concepts example above for the other 5 data types. To create a new object we typically assign an empty set of curly braces {} to a variable. Below you'll find of set of examples going over basics objects in JavaScript.






Another common data structure is called an Array. You can create one of these by accessing a set of square brackets [] to a variable. Technically, an Array is just another kind of "object" (we'll come to realize that nearly everything in JavaScript is some kind of object, but more on that later). Below you'll find of set of examples going over the basics of arrays in JavaScript.





Animation Loops