Skip to content

Instantly share code, notes, and snippets.

@chriswrightdesign
Last active June 23, 2017 03:45
Show Gist options
  • Save chriswrightdesign/a6a946a9b25b841a5dce752a33bd956e to your computer and use it in GitHub Desktop.
Save chriswrightdesign/a6a946a9b25b841a5dce752a33bd956e to your computer and use it in GitHub Desktop.
Math.round map
const myValues = [1.34, 3.5, 3.6, 4.1];
myValues.map(Math.round) // [1, 4, 4, 4];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment