Also my project:
Hi, my name is Zhenya. I am here because I like web development. We can say that this is my hobby. Having fun at work, isn't it cool?
2008-2013 Mogilev State University of Food Technologies
Speciality: Machines and Apparatuses of Food Production
2021 The Rolling Scopes School: JS/FE Pre-school(Javascript)
class GuessingGame {
constructor() { }
setRange(min, max) {
this.min = min;
this.max = max;
}
guess() {
return Math.ceil((this.min + this.max) / 2)
}
lower() {
this.max = this.guess()
}
greater() {
this.min = this.guess()
}
}
Proficiency level - A2