Skip to content

Instantly share code, notes, and snippets.

@k88hudson
Last active August 29, 2015 14:07
Show Gist options
  • Save k88hudson/a72be2e175a572fb3b16 to your computer and use it in GitHub Desktop.
Save k88hudson/a72be2e175a572fb3b16 to your computer and use it in GitHub Desktop.
function say(textOrOptions) {
if (typeof textOrOptions === 'string') {
// it's a string
} else {
// it's something else
}
}
function say(one, two) {
var text;
var voice;
if (!two) {
text = one;
} else {
voice = one;
text = two;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment