Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyJavaScriptarray map filter reduceSingle-choice MCQ3,868 views

What is the output?

let numbers = [1, 2, 3, 4]; let result = numbers.find(n => n > 1); console.log(result);