Created
November 27, 2017 18:20
-
-
Save davidostermann/63194ace6a118f38261ec21f2ad3bb17 to your computer and use it in GitHub Desktop.
object entries
This file contains 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
Object.entries(obj).map(([key, value], i) => | |
<p key={i}> {key} : <strong>{value}</strong></p> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment