Skip to content

Instantly share code, notes, and snippets.

@ivanteoh
Created July 6, 2020 10:42
Show Gist options
  • Save ivanteoh/24c5ce5e39a4f9994a076700539cfe1f to your computer and use it in GitHub Desktop.
Save ivanteoh/24c5ce5e39a4f9994a076700539cfe1f to your computer and use it in GitHub Desktop.
Javascript: 101 Week 1 Track 1
function stringGuess(aString) {
// 'default' operator
var checkString = aString || "aString is falsy value.";
// 'guard' operator
if (checkString && checkString.length)
return checkString;
return "aString is not a string";
}
var man = 0;
alert(stringGuess(man));
alert(stringGuess(52));
alert(stringGuess("10"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment