Skip to content
Discussion options

You must be logged in to vote

You're missing the return statement. With {}, it doesn't return automatically.

let result = arr.map(x => x * 2);

or

let result = arr.map(x => { return x * 2 });

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bwateratmsft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant