Skip to content

Instantly share code, notes, and snippets.

@pmogollons
Created January 8, 2019 21:08
Show Gist options
  • Save pmogollons/367441de5f834ad83b288398f50775a7 to your computer and use it in GitHub Desktop.
Save pmogollons/367441de5f834ad83b288398f50775a7 to your computer and use it in GitHub Desktop.
var mascota = "Perro";
console.log(mascota);
function cambiarMascota() {
mascota = "Gato";
console.log("Mi mascota es un: " + mascota);
};
cambiarMascota();
console.log(mascota);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment