JavaScript Basics

JavaScript - the standard for web development.

JavaScript, not to be confused with Java, was created in 1995 by Brendan Eich while he was working at Netscape, before he founded Mozilla. Originally, it was often used for front-end development to enhance interfaces of web pages, in tandem with HTML and CSS.

The language has come a long way since then. Today, JavaScript is used for back-end (server-side) development and can also be used for iOS/Android mobile development, Windows/MacOS application development, Arduino, video games, and much more.

It's important to understand this language from the ground up. So we'll start with the basics and build from there. We'll look at how the browser's built-in JavaScript engine processes your code so that you get a deeper understanding of how it all works.


Skills covered in this course: JavaScript Loops Conditionals Operators Data Types Variables

Lessons

1. Setting Up to Code (2:56) Preview
2. The JavaScript Console (4:13) Preview
3. Getting a Feel for JavaScript (10:23) Preview
4. The Text Editor (14:09) Preview
5. Numbers (6:51)
6. Strings (5:30)
7. Variable Assignment (6:23) Preview
8. Booleans (4:46)
10. Logical Operators (5:13)
11. Comments (3:51)
12. If Statements (8:14)
13. Ternary Operator (4:33)
14. Switch Statements (5:46)
15. While Loops (6:24)
16. Do While Loops (2:52)
17. For Loops (8:02)
18. Nested for Loops (6:34)