-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
js-scrabble #7
base: master
Are you sure you want to change the base?
js-scrabble #7
Conversation
…rom a list. if tied, returns the one with 7 letters, or the shortest, or the one earlier in the list (in that order)
…tarting to write tests
…them to the user in an array
…aining in the bag
…enough remaining is correct
}; | ||
|
||
Scrabble.prototype = { | ||
helloWorld: function() {return 'hello world!';}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👋🏻
Lisa, fantastic first fore into Javascript OOP. Your objects are clean, have single responsibilities, and the code is clear. There were a couple conditionals that may get kind of tricky but overall looked good. The only other thing I have is that I'd like to see more comments/documentation about what the purpose of different methods are. The methods here are pretty clear but it's custom to have docstrings at the start of methods in the |
Thanks so much @loganmeetsworld! |
Lisa Rolczynski