/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Пример 3 (конÑтрукторы, ÑвойÑтва в прототипе) function Class() { } Class.prototype.value = 'some value'; // ÑвойÑтво Class.prototype.some_method = function() { // метод console.log('some_method invoked'); } var obj1 = new Class(); // ÑкземплÑÑ€ клаÑÑа var obj2 = new Class(); // еще один
URL: http://habrahabr.ru/blogs/javascript/64746/#habracut