Skip to content

Instantly share code, notes, and snippets.

@hrajchert
Created April 28, 2017 04:15
Show Gist options
  • Save hrajchert/b4c7a5c397c21815389b397b617fd40a to your computer and use it in GitHub Desktop.
Save hrajchert/b4c7a5c397c21815389b397b617fd40a to your computer and use it in GitHub Desktop.
// ES6
// let vs const
var miNumero = 9
miNumero++;
// Constante !== Inmutable
var miObjeto = {
numero: 9
};
miObjeto.numero++;
miObjeto = {numero: 10};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment