Skip to content

Instantly share code, notes, and snippets.

@hassansw
Created March 5, 2019 11:26
Show Gist options
  • Save hassansw/dff335b96514e6e81981fde929272f3a to your computer and use it in GitHub Desktop.
Save hassansw/dff335b96514e6e81981fde929272f3a to your computer and use it in GitHub Desktop.
findShort(s) {
try {
return Math.min(...s.split(' ').map(o => o.length));
} catch (error) {
return null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment