function TestJSClass() {
// тут переменные...
}
TestJSClass.prototype.TestMethod = function() {
// тут код...
}
test = new TestJSClass();
test.TestMethod();
function TestJSClass() {
// тут переменные...
this.TestMethod = function() {
// тут код...
}
}
test = new TestJSClass();
test.TestMethod();