// 100% JavaScript, 0% jargon

Learn JavaScript like someone actually explained it to you.

A complete, from-scratch documentation site — every keyword, every method, every "why" — in plain English, with real examples you can run.

JavaScript
ECMAScript 2024 · click me ✨
dynamic interpreted multi-paradigm
first-steps.js
// Your first JavaScript const name = "World"; const greet = (who) => { console.log(`Hello, ${who}!`); }; greet(name); // Hello, World!
68
Lessons
12
Chapters
0
Cost

Written for beginners

Every hard word is explained the moment it shows up. No assumed knowledge.

Real analogies

Every concept is tied to something from everyday life before the code.

Line-by-line code

Examples are broken down piece by piece — what each symbol actually does.

Practice built in

Exercises, quizzes and mini challenges close out every lesson.