Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 726 Bytes

File metadata and controls

28 lines (18 loc) · 726 Bytes

Hello world

In this project, you will write your first javascript program that will print Hello World.

Prerequisites

  • VSCode or IntelliJ (IDE)

Instructions

  1. Install Node.js on your Windows, Mac, or Linux computer following the instructions here. Use the LTS version on that page.

  2. Open VSCode. Create a new file called HelloWorld.js. To this file, add javascript code to print Hello world.

  3. From the command line, run the JavaScript file.

Results

Try it yourself before looking at these!

Code
Console.log("Hello World");
Console Output
Hello World