Created
September 19, 2022 21:25
-
-
Save codigoconjuan/e8157b390eee8a7d7bb861343340b3a0 to your computer and use it in GitHub Desktop.
Gist Clientes
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
const clientes = [ | |
{ | |
id: 1, | |
nombre: 'Juan', | |
telefono: 102013313, | |
email: "[email protected]", | |
empresa: 'Codigo Con Juan' | |
}, | |
{ | |
id: 2, | |
nombre: 'Karen', | |
telefono: 138198313, | |
email: "[email protected]", | |
empresa: 'Codigo Con Juan' | |
}, | |
{ | |
id: 3, | |
nombre: 'Josue', | |
telefono: 31983913, | |
email: "[email protected]", | |
empresa: 'Codigo Con Juan' | |
}, | |
{ | |
id: 4, | |
nombre: 'Miguel', | |
telefono: 319381983, | |
email: "[email protected]", | |
empresa: 'Codigo Con Juan' | |
}, | |
{ | |
id: 5, | |
nombre: 'Pedro', | |
telefono: 1398198938, | |
email: "[email protected]", | |
empresa: 'Codigo Con Juan' | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Muchas gracias por los recursos.