Skip to content

Instantly share code, notes, and snippets.

@joaogolias
Created October 30, 2018 15:27
Show Gist options
  • Save joaogolias/62db6e1226160e3c8e23116bf3b45c03 to your computer and use it in GitHub Desktop.
Save joaogolias/62db6e1226160e3c8e23116bf3b45c03 to your computer and use it in GitHub Desktop.
const isPositive = function(value: number) : boolean {
return value > 0
}
isPositive(1) // => true
isPositive(-20) // => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment