From 524c27515fe4dc6b5c8f010f1ba51861bd8d7cf1 Mon Sep 17 00:00:00 2001 From: Hari Acharya <118670580+hariacharya7@users.noreply.github.com> Date: Wed, 1 Mar 2023 22:59:26 +0545 Subject: [PATCH] Update 05_day_arrays.md --- 05_Day_Arrays/05_day_arrays.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/05_Day_Arrays/05_day_arrays.md b/05_Day_Arrays/05_day_arrays.md index 0dae635..0110a35 100644 --- a/05_Day_Arrays/05_day_arrays.md +++ b/05_Day_Arrays/05_day_arrays.md @@ -698,7 +698,8 @@ const webTechs = [ 11. Change each company name to uppercase one by one and print them out 12. Print the array like as a sentence: Facebook, Google, Microsoft, Apple, IBM,Oracle and Amazon are big IT companies. 13. Check if a certain company exists in the itCompanies array. If it exist return the company else return a company is _not found_ -14. Filter out companies which have more than one 'o' without the filter method +14. Filter out companies which have more than one 'o' without the filter method. + _Many of you seems to be have difficulty here, don't worry and try to find a solution. If you have tried hard and still can't figure out a solution see this_ 15. Sort the array using _sort()_ method 16. Reverse the array using _reverse()_ method 17. Slice out the first 3 companies from the array