Created
November 17, 2017 19:09
-
-
Save jacobshenning/d6c40b908c5213702079dd80d81465c7 to your computer and use it in GitHub Desktop.
A JavaScript Function to see if a string is longer than 10 characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Determines if the string length is greater than 10. Mainly just testing out GitHub Gists | |
function StringLengthOverTen(string) { | |
return string.length > 10; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment