How to know if all javascript object values are true?

前端 未结 5 873
再見小時候
再見小時候 2020-12-23 16:21

In JavaScript, I need to know if all object items are set to true.

If I have the following object:

var myObj = {title:true, name:true, email:false};
         


        
相关标签:
5条回答
  • 2020-12-23 16:49

    In modern browsers:

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

    A shorter alternative to this is:

    var allTrue = myObj.every(function(i) { return i; });
    

    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 });
    
    0 讨论(0)
  • 2020-12-23 16:49

    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)
    
    0 讨论(0)
  • 2020-12-23 16:51

    You can use every from lodash

    const obj1 = { a: 1, b: 2, c: true };
    const obj2 = { a: true, b: true, c: true }; 
    
    _.every(obj1, true);  // false
    _.every(obj2, true);  // true
    
    0 讨论(0)
  • 2020-12-23 17:01

    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.

    0 讨论(0)
  • 2020-12-23 17:01

    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.

    0 讨论(0)
提交回复
热议问题