Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // Ejemplo 1
  2. const mascotas = [
  3. "Maggie",
  4. "Panqué",
  5. "Guayaba",
  6. "Michi"
  7. ];
  8. console.log("Mascotas original: ", mascotas);
  9. mezclarArreglo(mascotas);
  10. console.log("Mascotas mezclado: ", mascotas);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement