Skip to content

Instantly share code, notes, and snippets.

@SamCode011
Forked from Klerith/heroes.js
Created January 5, 2024 19:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SamCode011/920d2127d148695d9020a900b35b74f1 to your computer and use it in GitHub Desktop.
Save SamCode011/920d2127d148695d9020a900b35b74f1 to your computer and use it in GitHub Desktop.
Un pequeño arreglo de héroes para hacer ejercicios
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'
},
{
id: 3,
name: 'Superman',
owner: 'DC'
},
{
id: 4,
name: 'Flash',
owner: 'DC'
},
{
id: 5,
name: 'Wolverine',
owner: 'Marvel'
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment