Skip to content

Instantly share code, notes, and snippets.

@fay-jai
Created November 10, 2018 20:52
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 fay-jai/5cad6733be7bdb7cd82d70d267c569c9 to your computer and use it in GitHub Desktop.
Save fay-jai/5cad6733be7bdb7cd82d70d267c569c9 to your computer and use it in GitHub Desktop.
const petName = "Fido"; // You bind the value "Fido" to the variable petName
const shoutPetName = petName.toUpperCase(); // The value "FIDO" is bound to shoutPetName
console.log(petName); // However, the original value "Fido" hasn't been changed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment