function Test() {
this.field1 = 'field1';
this.field2 = 'field2';
}
Test.prototype.method1 = function(first_argument) {
// do something...
};
function Test2() {}
Test2.prototype.method1 = function(first_argument) {
// Вызов
Test.method1();
};
var test = new Test;
function Test2() {}
Test2.prototype.method1 = function(first_argument) {
// Вызов
test.method1();
};
function Test() {
this.field1 = 'field1';
this.field2 = 'field2';
}
Test.method1 = function(first_argument) {
// do something...
};