Created
April 16, 2019 12:41
-
-
Save tomfordweb/4c5f980fb4b5b3f7871b50f8d14c87d1 to your computer and use it in GitHub Desktop.
JS Helpful Array Functions
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
// convert object of objects to array of objects | |
const arr = Object.keys(obj).map(i => obj[i]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment