Skip to content

Instantly share code, notes, and snippets.

@douglasabnovato
Created March 7, 2023 20:58
Show Gist options
  • Save douglasabnovato/5aaf25fa63f2fe6e0bdb0386bf7074df to your computer and use it in GitHub Desktop.
Save douglasabnovato/5aaf25fa63f2fe6e0bdb0386bf7074df to your computer and use it in GitHub Desktop.
matriz de objetos
export default [
{
name: 'Lion',
scientificName: 'Panthero leo',
size: 140,
diet: ['meat'],
},
{
name: 'Gorilla',
scientificName: 'Gorilla beringei',
size: 205,
diet: ['plants', 'insects'],
additional: {
notes: 'This is the eastern gorilla. There is also a western gorilla that is a different species.'
}
},
{
name: 'Zebra',
scientificName: 'Equus quagga',
size: 322,
diet: ['plants'],
additional: {
notes: 'There are three different species of zebra.',
link: 'https://en.wikipedia.org/wiki/Zebra'
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment