You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,11 @@ Welcome to your first JavaScript lab at Ironhack!
6
6
7
7
The goal of this exercise is to get you familiarized with the primitive data structures in JavaScript, which we have covered in the class. Feel free to reference lesson materials, and don't limit yourself; be curious and use Google to explore multiple solutions.
-**When you are done completely, or at any point after the first iteration, copy your code into the `index.js` file and follow the steps for submission.**
46
46
@@ -96,6 +96,7 @@ Create a Pull Request so that the TAs can check your work.
96
96
### Bonus Time!
97
97
98
98
#### Bonus 1:
99
+
99
100
Go to the [lorem ipsum generator](http://www.lipsum.com/) website and:
100
101
- Generate 3 paragraphs. Store the text in a new string variable named `longText`.
101
102
- Make your program count the number of words in the string.
@@ -114,14 +115,14 @@ Create a new variable `phraseToCheck` and have it contain some string value. Wri
114
115
115
116
__IMPORTANT__: If you use Google to help you to find solution to this iteration, you might run into some advanced solutions that use string or array methods (such as _join()_, _reverse()_, etc.). However, we want you to apply the knowledge you currently have and try to come up with a solution by just using `for` loop and `if-else` statements with some `break` and `continue`.
0 commit comments