Question: Given the following array definition and subsequent code, const countries = [ C a n a d a , l i , Colombia, Croatia, CostaRica

Given the following array definition and subsequent code,
const countries =[Canada,li, Colombia, Croatia, CostaRica];
Which of the following statements correctly uses a filter and arrow function that returns a
filtered array of countries where the names are 7 characters or more?
const countriesLong = countries.filter country => country.length 7);
const countriesLong = countries. filter( country country.length =>7);
const countriesLong = countries.filter((country)=> country.length >7);
const countriesLong = countries.reduce( country -> country.length >7);
 Given the following array definition and subsequent code, const countries =[Canada,li,

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!