From 66852e4e5a5d20547a65d8622b45ae5caa82a237 Mon Sep 17 00:00:00 2001 From: Jessica Colin Date: Fri, 9 Oct 2020 09:55:59 +0200 Subject: [PATCH] Update 06_day_loops.md --- 06_Day_Loops/06_day_loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_Day_Loops/06_day_loops.md b/06_Day_Loops/06_day_loops.md index f0809fb..8c65076 100644 --- a/06_Day_Loops/06_day_loops.md +++ b/06_Day_Loops/06_day_loops.md @@ -414,7 +414,7 @@ for(let i = 0; i <= 5; i++){ 2. In above countries array, check if there is a country or countries containing the word 'land'. If there are countries containing 'land', print it as array. If there is no country containing the word 'land', print 'All these countries are without land'. ```sh - ['Finland', 'Iceland'] + ['Finland', 'Ireland'] ``` 3. In above countries array, check if there is a country or countries end with a substring 'ia'. If there are countries end with, print it as array. If there is no country containing the word 'ai', print 'These are countries ends without ia'.