문서의 이전 판입니다!
// Create an object let person = { firstName: "Elizabeth", lastName: "Ollsen", id: 5566, fullName: function () { return this.firstName + " " + this.lastName; } }; // Display data from the object: document.getElementById("demo").innerHTML = person.fullName(); // Elizabeth Ollsen console.log(person); // {firstName: "Elizabeth", lastName: "Ollsen", id: 5566, fullName: ƒ}
함수 정의에서, this
는 함수의 “소유자”를 나타냅니다.
위의 예제에서, this
는 fullName 함수를 “소유”하는 person 오브젝트입니다.
즉, this.firstName은 this object의 firstName 프러퍼티를 의미합니다.
this
키워드에 대한 자세한 내용은 The JavaScript this Keyword를 참조하십시오.
JavaScript 메서드는 오브젝트에 대해 수행할 수 있는 작업입니다.
JavaScript 메서드는 함수 정의를 포함하는 프로퍼티입니다.
Property | Value |
---|---|
firstName | John |
lastName | Doe |
age | 50 |
eyeColor | blue |
fullName | function() { return this.firstName + “ ” + this.lastName;} |
메서드는 오브젝트 프로퍼티로 저장된 함수입니다.(Methods are functions stored as object properties.)
다음의 구문을 사용하여 오브젝트 메서드에 액세스합니다.
objectName.methodName()
일반적으로 fullName()을 person 오브젝트의 메서드로, fullName을 프로퍼티로 설명합니다.
fullName 프로퍼티는 소괄호 ()로 호출될 때 (함수로) 실행됩니다.
다음 예제는 person 오브젝트의 fullName() 메서드에 액세스합니다.
소괄호 ()없이 fullName 프로퍼티에 액세스하면, 함수 정의(function definition)를 반환합니다.