Everything Be True

Posted 鲁小肃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Everything Be True相关的知识,希望对你有一定的参考价值。

所有的东西都是真的!

完善编辑器中的every函数,如果集合(collection)中的所有对象都存在对应的属性(pre),并且属性(pre)对应的值为真。函数返回ture。反之,返回false。

记住:你只能通过中括号来访问对象的变量属性(pre)。

提示:你可以有多种实现方式,最简洁的方式莫过于Array.prototype.every()

简单说就是判断数组中的对象是否有对应的属性,如果有进一步判断属性是否为真。

常规方法

function every(collection, pre) {
  return collection.every(function(ele){
     if(ele.hasOwnProperty(pre)){
       return Boolean(ele[pre]);
     }else{
       return false;
     }
  });
}

 写完后翻看自己之前写的解法,发现自己以前的解法比现在还简单,简直把自己惊呆了,原方法如下

function every(collection, pre) {
 return collection.every(function(val){
    return val[pre];
  });
}

 

以上是关于Everything Be True的主要内容,如果未能解决你的问题,请参考以下文章

Everything Be True

FCC 中级算法题 Everything Be True

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

报错“Field pet in XXX.HelloController required a bean of type ‘XXX.Pet‘ that could not be found.“(代码片段

Docker删除报错:Error response from daemon: conflict: unable to delete 08b152afcfae (must be forced)(代码片段