You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Implement a class called Game with the following:
# A constructor that takes no arguments and sets an instance variable called score to an initial value of 0.
# A getter method named score that returns the value of a private instance property called _score.
# A setter method named score that sets the value of the private property _score. This method should take a single argument for the value and set _score to this value * 10.