From be8ea4e344b860c4f5e8b622614598bfba42425a Mon Sep 17 00:00:00 2001 From: emmanuelmoon <83908738+emmanuelmoon@users.noreply.github.com> Date: Sat, 16 Jul 2022 17:52:39 +0500 Subject: [PATCH] Removed duplicate exercise Removed a duplicate exercise which was 4 and 6 from Level 3. There was also a spelling change which I corrected in the same exercise. --- 06_Day_Loops/06_day_loops.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/06_Day_Loops/06_day_loops.md b/06_Day_Loops/06_day_loops.md index c093495..531d5c6 100644 --- a/06_Day_Loops/06_day_loops.md +++ b/06_Day_Loops/06_day_loops.md @@ -472,9 +472,8 @@ for(let i = 0; i <= 5; i++){ 1. Copy countries array(Avoid mutation) 1. Arrays are mutable. Create a copy of array which does not modify the original. Sort the copied array and store in a variable sortedCountries 1. Sort the webTechs array and mernStack array -1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array +1. Extract all the countries containing the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array 1. Find the country containing the hightest number of characters in the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) -1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array 1. Extract all the countries containing only four characters from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array 1. Extract all the countries containing two or more words from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array 1. Reverse the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and capitalize each country and stored it as an array