美文网首页
Everything Be True

Everything Be True

作者: yyggfffg | 来源:发表于2018-05-06 09:58 被阅读0次

所有的东西都是真的!

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

function every(collection, pre) {
  // Is everyone being true?
  var passed=collection.every(function(val){
    return val.hasOwnProperty(pre)&&val[pre];
  });
  return passed;
}

every([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy", "sex": "male"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex");

相关文章

  • Everything Be True

    所有的东西都是真的! 完善编辑器中的every函数,如果集合(collection)中的所有对象都存在对应的属性(...

  • Everything Be True

    function every(collection, pre) { // Is everyone being t...

  • Everything Be True

    要求 完善编辑器中的every函数,如果集合(collection)中的所有对象都存在对应的属性(pre),并且属...

  • everything is object

    >>> isinstance(everything,object) True

  • Everything Will Come True

    I wrote a letter for myself two years ago and I read it j...

  • FCC-Everything Be true

    完善编辑器中的every函数,如果集合(collection)中的所有对象都存在对应的属性(pre),并且属性(p...

  • Everything Be True | Free Code C

    Check if the predicate (second argument) is truthy on all...

  • 英语

    May all your wishes come true 心想事成; Everything goes well ...

  • 万事皆须 万事皆允

    Nothing is true,Everything is permitted! 真理指向自由! 万事皆须,万事皆...

  • 文字收藏

    1.Nothing is true, everything is permitted.——万物为虚,万物皆允。 2...

网友评论

      本文标题:Everything Be True

      本文链接:https://www.haomeiwen.com/subject/fcwyrftx.html