Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Created December 10, 2015 04:01
Show Gist options
  • Save edinsoncs/847cbaad841058550eaa to your computer and use it in GitHub Desktop.
Save edinsoncs/847cbaad841058550eaa to your computer and use it in GitHub Desktop.
Booleans True and False Javascript
/*Valores Primitivos Bools True o False*/
//Recordar que si tenemos un objeto false y hacemos una condicional nos dara true ejemplo
var bool = function(bol) {
var bol = new Boolean(false);
if(bol){
return "return true";
}
}
bool();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment