초급 시리즈: 개체 및 개체 메서드
사물
const personObject = {
firstName: 'John',
lastName: 'Doe',
age: 2050 - 2010,
job: 'Teacher',
family: ['Jane', 'Amber']
};
보다 정렬된 DATA용 배열, 구조화되지 않은 DATA용 객체
console.log(personObject)
를 시도하면 개체 속성이 사전순으로 정렬되어 있는지 확인할 수 있습니다.객체의 속성을 얻는 방법
점 표기법
console.log(personObject.firstName);
괄호 표기법
console.log(personObject["firstName"]);
차이점에 대한 예
점 또는 대괄호 표기법으로 새 속성 추가
personObject.location = 'Brazil';
personObject['twitter'] = '@mpfdev';
console.log(`${personObject.firstName} has ${personObject.family.length} family members, and his twitter is ${personObject.twitter} make sure to follow :)`);
메서드가 있는 템플릿 문자열을 사용할 수 있습니다.
객체는 모든 종류의 데이터 유형을 가질 수 있습니다.
const personObject = {
firstName: 'John',
lastName: 'Doe',
job: 'Teacher',
family: ['Jane', 'Amber'],
hasCertificate: true,
workAge: 21,
calcRetirement: function () {
return 35 - this.workAge;
}
};
함수 표현식 및 console.log의 예
그리고 오늘은 여기까지!
당신이 그것을 즐겼기를 바랍니다!
Reference
이 문제에 관하여(초급 시리즈: 개체 및 개체 메서드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mpfdev/beginner-series-objects-and-object-methods-3n5a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)