Which of the following function of Array object creates a new array with all of the elements of this array for which the provided filtering function returns true? A. concat() B. every() C. filter() D. some() Answer Workspace Report Discuss Answer with explanation Answer: Option C Explanation filter() − Creates a new array with all of the elements of this array for which the provided filtering function returns true. Workspace
Discuss about the question