function Animal(name) {
this.name = name;
}
Animal.prototype.getName = function () {
return this.name;
};
function Dog(name) {
Animal.apply(this, arguments);
}
Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.constructor = Dog;
Dog.prototype.bark = function() {
return 'Dog' + this.getName() + 'is barking';
};
var dog = new Dog('Aban');
alert(dog.getName() === 'Aban');
alert(dog.bark() === 'Dog Aban is barking');
Потому что DogAbanis barking
!== Dog Aban is barking
:)
Виртуальный выделенный сервер (VDS) становится отличным выбором
A bug arises, the computer hits the already damaged ship and no longer makes moves, I do not know how to fix itSources by reference https://drive
Стоит задача организовать трансляцию HLS потоков на Smart TV телевизорах (LG, Samsung, Philips ect)
В методе casperfill() первым параметром передается селектор формы для заполнения(к примеру, casper
Как мне сделать вот такой ползунок, чтобы я мог выбирать месяц, три месяца, год и тд