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
+5-16Lines changed: 5 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Ready?
10
10
11
11
## Introduction
12
12
13
-
For this Pair-Programming activity we are going to use a [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop). You can fine a REPL that runs in the browser for programming languages as JavaScript in [repl.it](https://repl.it/)
13
+
For this Pair-Programming activity we are going to use a [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop). You can find a REPL that runs in the browser for programming languages as JavaScript in [repl.it](https://repl.it/)
14
14
15
15
We could also type JavaScript code in an editor, and then execute it to see the results in the REPL.
16
16
@@ -46,7 +46,7 @@ When you are done and you have checked that everything works fine, go to https:/
46
46
47
47
2. Print `"The driver's name is XXXX"`
48
48
49
-
3. Create a variable `hacker2`and [ask the user](https://developer.mozilla.org/en-US/docs/Web/API/Window/prompt) for the navigator's name
49
+
3. Create a variable `hacker2`with the navigator's name
50
50
51
51
4. Print `"The navigator's name is YYYY"`
52
52
@@ -72,24 +72,13 @@ When you are done and you have checked that everything works fine, go to https:/
72
72
73
73
### Bonus Time!
74
74
75
-
9. Ask the user for a new string and check if it's a [Palindrome](https://en.wikipedia.org/wiki/Palindrome). Examples of palindromes:
76
-
- "A man, a plan, a canal, Panama!"
77
-
- "Amor, Roma"
78
-
- "race car"
79
-
- "stack cats"
80
-
- "step on no pets"
81
-
- "taco cat"
82
-
- "put it up"
83
-
- "Was it a car or a cat I saw?" and "No 'x' in Nixon".
84
-
85
-
10. Go to [lorem ipsum generator](http://www.lipsum.com/) and:
86
-
- Generate 3 parragraphs. Store the text in a String
75
+
9. Go to [lorem ipsum generator](http://www.lipsum.com/) and:
76
+
- Generate 3 paragraphs. Store the text in a String
87
77
- Make your program count the number of words in the string
88
-
- Make your program count the number of times the latin word [`et`](https://en.wiktionary.org/wiki/et#Latin)appears
78
+
- Make your program count the number of times the latin word [`et`](https://en.wiktionary.org/wiki/et#Latin)appears
89
79
90
80
## Extra Resources
91
81
92
-
-[prompt() - MDN](https://developer.mozilla.org/en-US/docs/Web/API/Window/prompt) | Ask user for input
0 commit comments