Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 008cba5

Browse files
committed
Updated README.md
1 parent 1b4a827 commit 008cba5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In our effort to familiarize ourselves with the Learn IDE, Let's play with strings a numbers again but in the Learn IDE. First things first though, let's open this lab in the Learn IDE. Go ahead and click the blue "Open" button on the top of this page. You should then be _whisked_ away to the IDE.
44

5-
Alright! This lab is *very important*. I'm going to teach you how to approach all labs...and really everything in coding. That's a hufe statement, but programming is actually fairly simple if you follow this process.
5+
Alright! This lab is *very important*. I'm going to teach you how to approach all labs...and really everything in coding. That's a huge statement, but programming is actually fairly simple if you follow this process.
66

77
First things first, let's run the code we are given. That should always be your first task. Just like when you are using a map to find a new restaurant, you need to know where you are _now_ before you can know where you need to go. To run the code, type `nodejs index.js` in your terminal. You should get something like this:
88

@@ -42,3 +42,5 @@ var height = 74
4242
```
4343

4444
Boom! We took away the quotes and now it's a number not a string. You can remove the `parseInt` part of your `console.log` to look like this: `console.log(height + 1)` and everything should work properly. Awesome!
45+
46+
<p class='util--hide'>View <a href='https://learn.co/lessons/js-node-practice-lab'>Node Practice</a> on Learn.co and start learning to code for free.</p>

0 commit comments

Comments
 (0)