Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2019 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f94bbd784181d0bc10ef117ac531a5a4 to your computer and use it in GitHub Desktop.
Save parzibyte/f94bbd784181d0bc10ef117ac531a5a4 to your computer and use it in GitHub Desktop.
let arreglo = ["perro", "gato", "ballena", "vaca", "burro"],
busqueda = "gato";
console.log("Tenemos el arreglo: ", arreglo);
console.log("Buscando ", busqueda);
let indice = arreglo.indexOf(busqueda);
console.log("El elemento buscado está en el índice ", indice);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment