Skip to content

Instantly share code, notes, and snippets.

@claudiainbytes
Created August 25, 2017 03:49
Show Gist options
  • Select an option

  • Save claudiainbytes/82cec05d352cc61636c972ee62e5bbc2 to your computer and use it in GitHub Desktop.

Select an option

Save claudiainbytes/82cec05d352cc61636c972ee62e5bbc2 to your computer and use it in GitHub Desktop.
function hasEnoughPlayers(team){
return (team.length >= 7) ? true : false;
}
var team = ["Oliver Wood", "Angelina Johnson", "Katie Bell", "Alicia Spinnet", "George Weasley", "Fred Weasley", "Harry Potter"];
console.log(hasEnoughPlayers(team));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment