JavaScript override methods
问题 Let's say you have the below code: function A() { function modify(){ x = 300; y = 400; } var c = new C(); } function B() { function modify(){ x = 3000; y = 4000; } var c = new C(); } C = function () { var x = 10; var y = 20; function modify() { x = 30; y = 40; }; modify(); alert("The sum is: " + (x+y)); } Now the question is, if there is any way in wich I can override the method modify from C with the methods that are in A and B. In Java you would use the super keyword, but how can you