I need make validation to the Name attribute. May be need validation that it's not number? My code:
class Book {
get name(){
return this._name;
}
set name(value){
if (value.length === 0){
console.log("name is too short")
}
this._name = value;
}
}
But not working. What wrong?