Last active
June 23, 2017 03:45
-
-
Save chriswrightdesign/a6a946a9b25b841a5dce752a33bd956e to your computer and use it in GitHub Desktop.
Math.round map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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