JS(Object Method) : 내가 헷갈린 부분 -(Udemy 강의 (the-complete-javascript) 들으면서)
const soo = { firstName: "lucy", lastname:"soo", Birthday:1900, job:"front-end developer", ageCalc : function(Birthday) { return 2021 - Birthday; } };
console.log(soo.ageCalc(1991)); -> 30
console.log(soo['ageCalc'](1991)); -> 30
.이나 []로 function 지정해줘도 값은 같게 나옴
혹은 this를 지정해줘서 파라미터를 설정하지 않아도 값은 같게 나옴
ageCalc: function(){
return 2021-this.Birthday;
}
}; -> 30
Author And Source
이 문제에 관하여(JS(Object Method) : 내가 헷갈린 부분 -(Udemy 강의 (the-complete-javascript) 들으면서)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lucysoo95/JSObject-Method-내가-헷갈린-부분-Udemy-강의the-complete-javascript-들으면서저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)