Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created August 5, 2017 00:09
Show Gist options
  • Save kenmazaika/4ac21bbe6ce57259cfc5dc26529c1092 to your computer and use it in GitHub Desktop.
Save kenmazaika/4ac21bbe6ce57259cfc5dc26529c1092 to your computer and use it in GitHub Desktop.
var checkTruthyness = function(value) {
if(value) {
console.log(String(value) + " is truthy");
}
else {
console.log(String(value) + " is falsey");
}
}
checkTruthyness(true);
checkTruthyness(false);
checkTruthyness("Yolo");
checkTruthyness(10);
checkTruthyness(0);
checkTruthyness(-10);
checkTruthyness(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment