Skip to content

Instantly share code, notes, and snippets.

@samsamm777
Created November 4, 2017 14:29
Show Gist options
  • Save samsamm777/beaa75c721dc175d947cf3171321d15c to your computer and use it in GitHub Desktop.
Save samsamm777/beaa75c721dc175d947cf3171321d15c to your computer and use it in GitHub Desktop.
// 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