Skip to content

Instantly share code, notes, and snippets.

@paladinescamila
Created December 20, 2021 18:31
Show Gist options
  • Save paladinescamila/b44e3c131051844fc6c0d3a6a973c765 to your computer and use it in GitHub Desktop.
Save paladinescamila/b44e3c131051844fc6c0d3a6a973c765 to your computer and use it in GitHub Desktop.
let numbers = [1,2,3,4,5,6,7];
// squared = [1,4,9,16,25,36,49]
let squared = numbers.map(n => n**2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment