this.button.onclick = () => this.evaluate();
// либо
this.button.onclick = this.evaluate.bind(this);
.go-line.active {
animation: anim 5s forwards linear;
}
@keyframes anim {
from {
width: 0%;
}
to {
width: 100%;
}
}
// for this case prints 13
выполнено