Skip to content

Instantly share code, notes, and snippets.

@devmariodiaz
Created October 6, 2022 21:15
Show Gist options
  • Save devmariodiaz/1cd85688049344d57878fef2563c8deb to your computer and use it in GitHub Desktop.
Save devmariodiaz/1cd85688049344d57878fef2563c8deb to your computer and use it in GitHub Desktop.
const getUsuarioByID = (id, callback) => {
const usuario = {
id,
nombre: 'Mario'
}
setTimeout(() => {
callback(usuario);
}, 1500);
}
// Calling the function sending a callback method
getUsuarioByID(10, (usuario) => {
console.log(usuario.id);
console.log(usuario.nombre.toUpperCase());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment