Skip to content

Add learning goals #2544

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)

# LAB | JS Basic Algorithms
# LAB | JS Basic Algorithms

Welcome to your first JavaScript lab at Ironhack!

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

<br>

<details>
<summary>
<h2>Learning Goals</h2>
</summary>

This exercise is designed to allow you practice and apply the concepts and techniques taught in class.

Upon completion of this exercise, you will be able to:

- Declare variables using `const` and `let` keywords and use them to store values.
- Assign values to variables using assignment operators (`=` , `+=` , `-=` , etc.).
- Use conditional statements (`if`, `else if`, `else`) and logical operators (AND, OR, NOT) to control the flow of the program.
- Access and compare string characters, substrings and length.
- Manipulate strings using basic string methods and proper (`toUpperCase()`, `toLowerCase()`, etc.).
- Compare values using the comparison operators (`<` , `>` , `<=` , `>=` , `===`).
- Use `for` or `while` loops to iterate over strings in normal and reverse order.

<br>
<hr>

</details>

## Introduction

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).
Expand Down