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
@@ -12,6 +12,28 @@ The goal of this exercise is to get you familiarized with the primitive data str
12
12
13
13
<br>
14
14
15
+
<details>
16
+
<summary>
17
+
<h2>Learning Goals</h2>
18
+
</summary>
19
+
20
+
This exercise is designed to allow you practice and apply the concepts and techniques taught in class.
21
+
22
+
Upon completion of this exercise, you will be able to:
23
+
24
+
- Declare variables using `const` and `let` keywords and use them to store values.
25
+
- Assign values to variables using assignment operators (`=` , `+=` , `-=` , etc.).
26
+
- Use conditional statements (`if`, `else if`, `else`) and logical operators (AND, OR, NOT) to control the flow of the program.
27
+
- Access and compare string characters, substrings and length.
28
+
- Manipulate strings using basic string methods and proper (`toUpperCase()`, `toLowerCase()`, etc.).
29
+
- Compare values using the comparison operators (`<` , `>` , `<=` , `>=` , `===`).
30
+
- Use `for` or `while` loops to iterate over strings in normal and reverse order.
31
+
32
+
<br>
33
+
<hr>
34
+
35
+
</details>
36
+
15
37
## Introduction
16
38
17
39
For this **pair-programming** activity, we are going to use a [REPL](https://en.wikipedia.org/wiki/Read–eval–print_loop). To make things as simple as possible, we are going to use an in-browser JavaScript REPL that is provided by the browser-based IDE, [repl.it](https://replit.com/languages/javascript).
0 commit comments