Skip to content

Instantly share code, notes, and snippets.

@psttf
Created May 6, 2016 19:28
Show Gist options
  • Save psttf/128c75e99a59b8c69c3772d19683b595 to your computer and use it in GitHub Desktop.
Save psttf/128c75e99a59b8c69c3772d19683b595 to your computer and use it in GitHub Desktop.
Method update in JavaScript
// from repl.it
function myClass() {
this.uniqueTask = function() {
return 2
}
}
var obj = new myClass();
obj.uniqueTask = function() {
return "abc";
}
obj.uniqueTask();
// => 'abc'
var obj = new myClass();
obj.uniqueTask();
// => 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment