3 artifacts
Tap to collapse details
Install tools:
Run your first script:
node -v
hello.js
console.log('Hello, JavaScript!');
node hello.js
Learn basics via MDN Guide or javascript.info Fundamentals:
let x = 5; const name = 'Learner';
Practice in browser console (F12 > Console).
❌ Skipping Node.js install, relying only on browser
→Install Node for consistent scripting and offline practice
❌ Using 'var' for all variables
→Use 'const' by default, 'let' for reassignable values
Tap to expand details
Spin up a personalized “learn JavaScript” plan you can save, check off, and return to anytime — unlimited on the free trial.
freeCodeCamp
The Odin Project
by Marijn Haverbeke
by Kyle Simpson
Official comprehensive reference and guides
Step-by-step interactive tutorial
Visual guide from basics to advanced
Run JS server-side and in terminal
Powerful code editor with JS extensions
Debug, inspect DOM, network