Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Created September 10, 2015 14:25
Show Gist options
  • Save jcastellanos003/59ce31144e562a8d7983 to your computer and use it in GitHub Desktop.
Save jcastellanos003/59ce31144e562a8d7983 to your computer and use it in GitHub Desktop.
(function(){
const numDays = 7;
var setNumDays = function() {
numDays = 8; //ERROR numDays is ReadOnly
}
setNumDays();
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment