Skip to content

Instantly share code, notes, and snippets.

@hrajchert
Created April 29, 2017 02:04
Show Gist options
  • Save hrajchert/d8cd39d02cc0ea5f2f14e45be25a8bec to your computer and use it in GitHub Desktop.
Save hrajchert/d8cd39d02cc0ea5f2f14e45be25a8bec to your computer and use it in GitHub Desktop.
// Refactoring
function miFnLoca(personas) {
personas.forEach(function (p) {
console.log('nombre: ', p);
});
}
miFnLoca(['Jose', 'Pedro']);
miFnLoca('Mariano');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment