Created
November 4, 2017 14:29
-
-
Save samsamm777/beaa75c721dc175d947cf3171321d15c to your computer and use it in GitHub Desktop.
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
// BAD | |
searchResults: [ | |
{name: 'New Noise', | |
artist: 'The Refused', | |
album: 'The Shape of Punk to Come'}, | |
{name: 'Hands Down', | |
artist: 'Dashboard Confessional', | |
album: 'A Mark, a Mission, a Brand, a Scar'}, | |
{name: 'name', | |
artist: 'artist', | |
album: 'album'} | |
], | |
// GOOD | |
searchResults: [ | |
{ | |
name: 'New Noise', | |
artist: 'The Refused', | |
album: 'The Shape of Punk to Come' | |
}, | |
{ | |
name: 'Hands Down', | |
artist: 'Dashboard Confessional', | |
album: 'A Mark, a Mission, a Brand, a Scar' | |
}, | |
{ | |
name: 'name', | |
artist: 'artist', | |
album: 'album' | |
} | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment