Getting Started with JavaScript
Learn how to write to the console in JavaScript.
We'll cover the following...
Learning programming often begins with executing a “Hello World!” program. In some languages like Java, it takes a lot to write Hello World to the standard output. In JavaScript, we get away with one single line:
JavaScript
Press + to interact
console.log( "Hello World");