(x, y) {
this.x = x;
this.y = y;
}
add(f, s) {
this.x = this.x + f;
this.y = this.y + s;
}
}
Что тут неправильно? Почему codewars пишет что 'constructor'
TypeError: Cannot read property 'constructor' of undefined
Это весь код?
Vectorдолжн быть
Обсуждают сегодня