🟨 JS Console · PPH Playground
▶ Run
⬇ Download
↺ Reset
🌓
JavaScript
// Welcome to the JS Console Playground! console.log("👋 Hello from JavaScript!"); const name = "PPH learner"; console.log(`Welcome, ${name}!`); // Try some JavaScript const numbers = [1, 2, 3, 4, 5]; const doubled = numbers.map(n => n * 2); console.log("Doubled:", doubled); // You can even use async/await (async () => { const result = await Promise.resolve("✨ Async works!"); console.log(result); })();
⏎ Console output
idle
› ready · press Run or Ctrl+Enter