From a6c5462a2af23ea0952d5f9ec385f15c1eee9200 Mon Sep 17 00:00:00 2001 From: Uros Cirkovic Date: Thu, 2 Mar 2023 13:52:22 +0100 Subject: [PATCH] feat: add learning goals section --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b9a0efd9d..adf1660c5 100644 --- a/README.md +++ b/README.md @@ -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! @@ -12,6 +12,28 @@ The goal of this exercise is to get you familiarized with the primitive data str
+
+ +

Learning Goals

+
+ + 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. + +
+
+ +
+ ## 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).