Loading...
</>
CS Coding Academy
Home
Courses
Playground
About
Contact
Log in
Sign up
Search courses
Login required to run code.
You can still build websites in the HTML & CSS tab, but running Python, JavaScript, or C++ requires an account to prevent abuse.
Login
Sign Up
Code
Playground
Beta
Write, run, and test your code in real-time. No setup required.
HTML & CSS
Python
JavaScript
C++
JavaScript Editor
Clear
Run
// Welcome to JavaScript Playground! // Write your code below and click Run console.log('Hello from JavaScript!'); let name = 'Student'; let age = 20; console.log('My name is ' + name + ' and I am ' + age + ' years old.'); let x = 10; let y = 5; console.log('Sum:', x + y);
Try These Examples
Hello World
Variables
Loop
If/Else
Output
Clear
// Click "Run" to execute your JavaScript code