Skip to content

Instantly share code, notes, and snippets.

@Cst2989
Created October 22, 2021 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cst2989/22d776d42221360d1a408c5e3a9d5f18 to your computer and use it in GitHub Desktop.
Save Cst2989/22d776d42221360d1a408c5e3a9d5f18 to your computer and use it in GitHub Desktop.
export const bowlingScore = (inputRolls) => {
if (inputRolls.length < 20) {
return 'Invalid number of rolls'
}
let totalScore = 0;
return totalScore;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment