Skip to content

Instantly share code, notes, and snippets.

@ayeshLK
Created January 4, 2022 19:31
Show Gist options
  • Save ayeshLK/b8ded808b973965632512099f5929714 to your computer and use it in GitHub Desktop.
Save ayeshLK/b8ded808b973965632512099f5929714 to your computer and use it in GitHub Desktop.
function isNumber(any value) returns boolean {
// checks whether the provided value is an `int` or a `float`
if value is int || value is float {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment