Skip to content

Instantly share code, notes, and snippets.

@pmogollons
Created January 8, 2019 21:28
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 pmogollons/c13caaaffeb172698e9a3014ca6af661 to your computer and use it in GitHub Desktop.
Save pmogollons/c13caaaffeb172698e9a3014ca6af661 to your computer and use it in GitHub Desktop.
mascota = "Perro";
console.log(mascota);
function cambiarMascota() {
mascota = "Gato";
console.log("Mi mascota es un: " + mascota);
};
cambiarMascota();
var mascota;
console.log(mascota);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment