Q
QuickJS Playground
Loading
Info
GitHub
Dark
Light
A-
14px
A+
Auto-run
Examples
Hello World
Functions
Objects & Arrays
Basic Operations
Clear
Download
// Welcome to QuickJS Playground! console.log("Hello, QuickJS!"); // Try some JavaScript features const greet = (name) => { return `Hello, ${name}!`; }; console.log(greet("World"));
▶️
Run Code
Clear
Copy
Console output will appear here...