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