Skip to content

Commit f4805b0

Browse files
authored
Merge pull request #2544 from ironhack-labs/uros/feat/add-learning-goals
Add learning goals
2 parents 3aa7ccb + a6c5462 commit f4805b0

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)
22

3-
# LAB | JS Basic Algorithms
3+
# LAB | JS Basic Algorithms
44

55
Welcome to your first JavaScript lab at Ironhack!
66

@@ -12,6 +12,28 @@ The goal of this exercise is to get you familiarized with the primitive data str
1212

1313
<br>
1414

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+
1537
## Introduction
1638

1739
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

Comments
 (0)