Skip to content

Instantly share code, notes, and snippets.

@911992
Created December 6, 2020 02:20
Show Gist options
  • Save 911992/9e277b66f24c446b22a5817e72b8009b to your computer and use it in GitHub Desktop.
Save 911992/9e277b66f24c446b22a5817e72b8009b to your computer and use it in GitHub Desktop.
Javascript object function overriding example
function get_obj(){
var obj={
func:function(){
console.log("Tehc");
}
};
return obj;
}
var a = get_obj();
a.func();
a.func = function(){
console.log("Hac");
};
a.func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment