Skip to content

Instantly share code, notes, and snippets.

@dan-laskowski
Created August 6, 2020 12:42
Show Gist options
  • Save dan-laskowski/a9245abf471de03bd1d65c934116f6e6 to your computer and use it in GitHub Desktop.
Save dan-laskowski/a9245abf471de03bd1d65c934116f6e6 to your computer and use it in GitHub Desktop.
[Count Syllables] #js #strings
function numberSyllables(word) {
return word.split(`-`).length
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment