이 키워드
const student = {
id: 101,
name: "faisal",
firstSkill: function(id,name){
console.log("My name is "+this.name);
console.log(this);
},
secondSkill: () => {
console.log(this);
},
thirdSkill: function(){
const myArrow= () =>
console.log(this);
myArrow();
}
}
function add(){
console.log(this);
}
일부 규칙
This হচ্ছে execution context.
Regular method হলে বাম পাশে যে আছে সেটাকে context হবে।
Arrow function হলে উপরের level অনুসারে context ধরবে।(Arrow function immediate context ধরতে পারে না।)
কোনো dom এর element এ click করলে, সেই event টাই this বুঝাবে।
Dom এর element এর event টা কোনো event handler হলে (যেটা পরে execute হবে), তাহলে function টা calling এর উপর this নির্ভর করবে।
firstSkill 일반 함수 er jonno, 이 출력 ta, 학생 er 모든 속성 gula 지불
secondSkill 화살표 함수 er jonno, 이 출력 ta, tar 즉시 수준 학생 er 모든 속성 지불 na. 타르 uporer 레벨 지불. eikhane tar uporer level hosse, window.
thirdSkill 일반 함수 er vitore myArrow 이름 ekta 화살표 함수 ase, 화살표 함수 er khetre 동일한 규칙, 이 출력 ta, tar 즉시 레벨 thirdSkill er 속성 지불 na. tar uporer level 어 모든 재산 지불. eikhane tar uporer level hosse, 학생.
add() function jodi index.html er kono event er moddhe thake call kora hoy, jmn---> ; tahole은 일반 niyome hobe를 추가합니다. Jemon-> add() function window tease, tai this er output hobe, window.
add() function jodi index.html er kono event er moddhe thake call kora na hoy, jmn---> Click Me ; tahole add normal niyome hobe na. eitar 출력 호브, oi 요소 ta. jemon eikhetre Click Me 호브 출력.
Reference
이 문제에 관하여(이 키워드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/webfaisalbd/this-keyword-1pjn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)