Skip to content

Instantly share code, notes, and snippets.

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