Skip to content

Instantly share code, notes, and snippets.

@kmaida
Last active December 21, 2015 19:49
Show Gist options
  • Save kmaida/6357260 to your computer and use it in GitHub Desktop.
Save kmaida/6357260 to your computer and use it in GitHub Desktop.
Typecasting in JavaScript with !!
var typeCast = function(string) {
if (!!string) {
document.write('<p>' + string + ': true</p>');
} else {
document.write('<p>' + string + ': false</p>');
}
};
typeCast("Hello there");
typeCast("");
typeCast(null);
typeCast(undefined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment