All courses
JAVASCRIPT / BEGINNER

Make the web do more

Bring your ideas to life with JavaScript. Learn the essentials, one practical example at a time.

3 text lessons 15 min + practice English

What you’ll learn

  1. 01
    Values and variables

    Change the learner name and increment the lesson counter once more.

    Preview
  2. 02
    Work with a list

    Add Python to the list. Use filter to keep only topics longer than three characters.

  3. 03
    Write a reusable function

    Create a function that takes a course name and returns a message about what you are learning.

Before you start

No previous coding experience is needed. Use a laptop or desktop with an internet connection, a modern web browser, and a text editor. Lessons can be read on mobile, but a computer is best for the exercises.

FREE PREVIEW / LESSON 01

Values and variables

JavaScript runs in your browser. Open the developer console to try this example. Use const when you will not reassign a variable and let when you will.

const learner = "You";
let completed = 0;
completed = completed + 1;
console.log(`${learner} completed ${completed} lesson!`);
Your turn

Change the learner name and increment the lesson counter once more.

Have a question about this course? Get in touch.