Score: 0 / 0 answered
Progress: 0 of 869 qs
time elap: 00:00
Question 1: What is the output of the following code snippet?
const arr = [1, 2, 3, 4]; const result = arr.map(num => num * 2); console.log(result);
Subject: 5 Functional Programming in JavaScript Advanced Level
Difficulty: Medium