Easy
JavaScript: How to Check if All Array Elements are Greater Than 5 Using Array.every() Method
Which line of code is missing to make the following script output true in the console?
1let numbers = [5, 10, 15, 20];2// Missing line here3console.log(allAboveFive);