Skip to content

Instantly share code, notes, and snippets.

@MichaelCharles
Created May 19, 2023 00:15
Show Gist options
  • Select an option

  • Save MichaelCharles/330afb9d634e06456c4da8005ee7734a to your computer and use it in GitHub Desktop.

Select an option

Save MichaelCharles/330afb9d634e06456c4da8005ee7734a to your computer and use it in GitHub Desktop.
let numbers = [10, 20, 30, 40, 50];
let halved = numbers.map(function(number) {
return number / 2;
});
console.log(halved); // [5, 10, 15, 20, 25]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment