JavaScript Examples

Copy, run, and modify real JavaScript code snippets in the playground.

Every lesson includes copy-ready examples. Open the playground and try:

const name = "Alex";
console.log("Hello, " + name);

for (let i = 1; i <= 3; i++) {
  console.log("Count:", i);
}

Change values, break things, fix them โ€” that is how you learn.

Explore JavaScript Examples All Categories