객체에 속성이 있는지 확인(freecodecamp 노트)
3649 단어 javascriptreactwebdev
운동
전달된 개체에 Alan, Jeff, Sarah 및 Ryan이라는 네 가지 이름이 모두 포함되어 있으면 true를 반환하고 그렇지 않으면 false를 반환하도록 함수 작성을 완료합니다.
let users = {
Alan: {
age: 27,
online: true
},
Jeff: {
age: 32,
online: true
},
Sarah: {
age: 48,
online: true
},
Ryan: {
age: 19,
online: true
}
};
function isEveryoneHere(userObj) {
// Only change code below this line
// Only change code above this line
}
대답
function isEveryoneHere(userObj) {
// Only change code below this line
if (userObj.hasOwnProperty('Alan') &&
userObj.hasOwnProperty('Jeff') &&
userObj.hasOwnProperty('Sarah') &&
userObj.hasOwnProperty('Ryan'))
{
return true
}
else {
return false
}
// Only change code above this line
}
Reference
이 문제에 관하여(객체에 속성이 있는지 확인(freecodecamp 노트)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/naveenkolambage/check-if-an-object-has-a-property-freecodecamp-notes-h2h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)