How to know if all javascript object values are true?

Solution 1:

With ES2017 Object.values() life's even simpler.

Object.values(yourTestObject).every(item => item)

Even shorter version with Boolean() function [thanks to xab]

Object.values(yourTestObject).every(Boolean)

Or with stricter true checks

Object.values(yourTestObject)
    .every(item => item === true)

Solution 2:

In modern browsers:

var allTrue = Object.keys(myObj).every(function(k){ return myObj[k] });

If you really want to check for true rather than just a truthy value:

var allTrue = Object.keys(myObj).every(function(k){ return myObj[k] === true });

Solution 3:

How about something like:

    function allTrue(obj)
    {
      for(var o in obj)
          if(!obj[o]) return false;
        
      return true;
    }
    
    var myObj1 = {title:true, name:true, email:false};
    var myObj2 = {title:true, name:true, email:true};

    document.write('<br />myObj1 all true: ' + allTrue(myObj1));
    document.write('<br />myObj2 all true: ' + allTrue(myObj2));

    

A few disclaimers: This will return true if all values are true-ish, not necessarily exactly equal to the Boolean value of True. Also, it will scan all properties of the passed in object, including its prototype. This may or may not be what you need, however it should work fine on a simple object literal like the one you provided.

Solution 4:

Quickest way is a loop

for(var index in myObj){
  if(!myObj[index]){ //check if it is truly false
    var fail = true
  }
}
if(fail){
  //test failed
}

This will loop all values in the array then check if the value is false and if it is then it will set the fail variable, witch will tell you that the test failed.