Почему последний alert даёт false?

304
07 августа 2017, 13:23
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');
Answer 1

Потому что DogAbanis barking !== Dog Aban is barking :)

READ ALSO
JS, JQ Battleship bag [требует правки]

JS, JQ Battleship bag [требует правки]

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

419
воспроизведение HLS-потока в браузере (html5-video)

воспроизведение HLS-потока в браузере (html5-video)

Стоит задача организовать трансляцию HLS потоков на Smart TV телевизорах (LG, Samsung, Philips ect)

404
CasperJS одинаковые селекторы

CasperJS одинаковые селекторы

В методе casperfill() первым параметром передается селектор формы для заполнения(к примеру, casper

266
Ползунок для выбора времени

Ползунок для выбора времени

Как мне сделать вот такой ползунок, чтобы я мог выбирать месяц, три месяца, год и тд

327