Skip to content

Instantly share code, notes, and snippets.

@otiai10
Created November 28, 2013 02:25
Show Gist options
  • Save otiai10/7686390 to your computer and use it in GitHub Desktop.
Save otiai10/7686390 to your computer and use it in GitHub Desktop.
is really true?
var _int1 = 1;
var _int2 = 2;
var _str = "hoge";
var _boo = true;
isTrue(_int1, '1');
isTrue(_int2, '2');
isTrue(_str, 'str');
isTrue(_boo, 'bool');
function isTrue(v, name){
if (v == true) {
console.log(name + " == IS TRUE ");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment