Initializing Editor

CodePad

Live Output

Syntax Help

Variables

const name = "Sekai"; let score = 0;

Printing Output

console.log("Hello World!");

Outputs will appear in the panel below.

Functions

function greet() {
  return "Hi!";
}

Loops

for(let i=0; i<5; i++) {
  console.log(i);
}
Keep exploring! JavaScript is powerful.