OceanJames

Results 1 comments of OceanJames

function fn() { getValue = function () { console.log(1); }; return this; } fn.getValue = function () { console.log(2); }; fn.prototype.getValue = function () { console.log(3); }; var getValue =...