The first lesson is time honored Hello World! tutorial. This one is pretty easy, but in case you need a hint to get started, here are the steps to complete this lesson.
Create a new .js file called helloWorld.js in your text editor. Add the following code to your file.
1 |
console.log("Hello World!") |
Save your file and verify it with learnyounode to complete the lesson.
1 |
learnyounode verify helloWorld.js |
That’s it! You are ready to move on to the next lesson.