Skip to content
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

Bowling challenge #1604

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

Bowling challenge #1604

wants to merge 5 commits into from

Conversation

carolrs
Copy link

@carolrs carolrs commented May 2, 2023

No description provided.

Copy link

@tomcarmichael tomcarmichael left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great - well done Ana! As we discussed could maybe have unit tests as the only improvement I can think of!

}

isStrike(){
return this.rolls[0] === 10

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice ! terse way to write

}

score(){
let sum = this.rolls.reduce((acc, number) => acc + number)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great use of reduce


}

addFrame(...rolls){

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great



} //spare
else if (currentFrame.isSpare() && this.hasNext(i)) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider breaking this out into a separate function as this function is a little long

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants