Skip to content

Instantly share code, notes, and snippets.

@YurkaninRyan
Created March 18, 2019 12:14
Show Gist options
  • Save YurkaninRyan/1c3523bfa4ffa1a5c23035c0b00dce85 to your computer and use it in GitHub Desktop.
Save YurkaninRyan/1c3523bfa4ffa1a5c23035c0b00dce85 to your computer and use it in GitHub Desktop.
function double(x) {
if (!Number.isFinite(x)) {
return console.error(
`double(x): ${x} is not a number`
)
}
return x * 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment