From 2b62d751f3c5a47885704c5d870c1ebcacb53392 Mon Sep 17 00:00:00 2001 From: Aditya Raj shekhawat Date: Sat, 11 May 2024 00:49:48 +0530 Subject: [PATCH 1/2] fixed-wording-for-step-5-of-pyramid-project --- .../660ef31a5be625914a0102cd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md index a6b9467e868e3d..f12fda30f7eeab 100644 --- a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md +++ b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md @@ -14,7 +14,7 @@ let programmer = "Naomi"; programmer = "CamperChan"; ``` -Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword. +Note that when reassigning a variable, you do **not** use the `let` keyword again. After your `console.log`, assign the value `"World"` to your `character` variable. From 204393647c696c6923a315419ec1982516be4da2 Mon Sep 17 00:00:00 2001 From: Aditya Raj shekhawat Date: Sat, 11 May 2024 15:54:26 +0530 Subject: [PATCH 2/2] fixed the problem regarding wrong sentence --- .../660ef31a5be625914a0102cd.md | 3 +-- .../660ef31a5be625914a0102cd.md | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md index f12fda30f7eeab..240ccecbe68fa3 100644 --- a/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md +++ b/curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md @@ -13,8 +13,7 @@ When a variable is declared with the `let` keyword, you can reassign let programmer = "Naomi"; programmer = "CamperChan"; ``` - -Note that when reassigning a variable, you do **not** use the `let` keyword again. +Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword. After your `console.log`, assign the value `"World"` to your `character` variable. diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md index a6b9467e868e3d..1abb121c69a1d0 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ef31a5be625914a0102cd.md @@ -14,7 +14,8 @@ let programmer = "Naomi"; programmer = "CamperChan"; ``` -Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword. +Note that when reassigning a variable, you do **not** use the `let` keyword again. + After your `console.log`, assign the value `"World"` to your `character` variable.