The JS workbench

Sandbox, console.log, Run, Reset, and privacy.

The playground is a single editor plus a console. Snippets are a cheat sheet. Prefer the exercises here.

Goal

Log hello and an array of Kenya cities.

console.log("Hello, JavaScript");
console.log("Nairobi kiosk");
const cities = ["Nairobi", "Mombasa", "Kisumu"];
console.log(cities.length);
console.log(cities[0]);