ItsProgramming
Introduction
1. The Basics
2. HTML
3. CSS
4. JavaScript
5. The Web
6. Dev Tools
7. Bootstrap
8. jQuery
9. Advanced HTML
10. Advanced CSS
11. Advanced JavaScript
12. Hosting & Deployment
2018 - 2021 by
Hazy
JavaScript
What is JavaScript?
2020.04.25 (4 min)
So far we have looked at HTML and CSS, but you must've noticed the "JS" tab in the Codepen examples. JS stands for JavaScript. It is a…
JavaScript Basics
2020.04.26 (5 min)
We looked at a few ideas of JavaScript in the previous post, let's go in more detail about each one. Storing Values We stored numbers and…
JavaScript Functions
2020.04.26 (4 min)
There is a way to reuse your code within the file itself too, very useful when your code grows into hundreds of lines. Functions You can…
Inline vs External JavaScript
2020.04.26 (3 min)
Great! We're already writing some basic JavaScript! So far we've done it in Codepen examples, so how do we go about setting them up locally…
While Loops and Timers
2020.04.26 (6 min)
Let's play around with a few of the things we covered previously so that you can practice them in different scenarios. Let's also learn…