Web development explained for normal people! 🖥 🚀

Don't know which to learn first?

Learn JavaScript

The language for creating interactive websites

    Getting started with JavaScript! - Code The Web
    1

    Getting started with JavaScript!

    JavaScript is a programming language that makes websites do stuff. It can store variables, do certain actions based on logi...

    Variables in JavaScript - Code The Web
    2

    Variables in JavaScript

    Variables are a core part of JavaScript - in fact, they are a core part of almost any programming language. They let you st...

    All about IF statements and booleans in JavaScript! - Code The Web
    3

    All about IF statements and booleans in JavaScript!

    If statements are another core part of JavaScript: they let you control what code is actually executed, based on comparing ...

    JavaScript Maths functions and operators - Code The Web
    4

    JavaScript Maths functions and operators

    Learn how to use addition, subtraction, multiplication, division, powers, rounding, modulo and more in this article…

    For loops and while loops in JavaScript - Code The Web
    5

    For loops and while loops in JavaScript

    Loops let you run code as many times as you want! They are really powerful, and a great thing to know. Learn them once and ...

    JavaScript Dialogs - Code The Web
    6

    JavaScript Dialogs

    JavaScript dialog boxes provide an easy way to receive inputs from visitors and output results for them to see. We can use ...

    The complete guide to JavaScript functions - Code The Web
    7

    The complete guide to JavaScript functions

    Functions are one of the most useful features of JavaScript. Learn about function inputs, outputs, variable scopes and more...

    The complete guide to JavaScript arrays - Code The Web
    8

    The complete guide to JavaScript arrays

    Arrays are a very useful part of JavaScript, and come in handy for things from text manipulation to image processing!

    JavaScript Objects - Code The Web
    9

    JavaScript Objects

    Objects are ways of storing data in JavaScript and are a key part of Object Oriented Programming. Learn the syntax and more...

    How to change HTML and CSS with JavaScript — an introduction to the DOM - Code The Web
    10

    How to change HTML and CSS with JavaScript — an introduction to the DOM

    Part of the entire reason that JavaScript exists is to interact with HTML and CSS. Learn how all three web languages inters...

    How to interpret URLs with JavaScript - Code The Web
    11

    How to interpret URLs with JavaScript

    There are many situations in web development where you really need to parse (interpret) a URL. Learn how to do that with UR...

    Dates and times in JavaScript - Code The Web
    12

    Dates and times in JavaScript

    If you’re a developer, you’re bound to use JavaScript dates and times sooner or later! Learn all about them in this article…

    JavaScript Timeouts and Intervals - Code The Web
    13

    JavaScript Timeouts and Intervals

    Timeouts and intervals let you execute pieces of code at specific times — they’re really useful! Learn how to use them in t...

    How to store data in the browser using JavaScript localStorage - Code The Web
    14

    How to store data in the browser using JavaScript localStorage

    Normally, when you set a variable, it goes away once you reload the page. What if you could store data that stays every tim...