Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Spring-Framework
- 노드에 리액트 추가하기
- node.js로 로그인하기
- intellij
- Do it 자바스크립트 + 제이쿼리 입문
- vs code 내 node
- Concurrently
- 웹 게임을 만들며 배우는 리액트
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 거북이 대포 게임
- node.js 설치
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 타자 게임 만들기
- 인프런
- props
- Colaboratory 글자 깨짐
- JS 개념
- react오류
- DB Browser
- spring-boot
- googleColaboratory
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Python
- 따라하며 배우는 노드 리액트 기본 강의
- 모두의 파이썬
- 자바스크립트
- 모던자바스크립트
- 리액트
- react
- 계산맞추기 게임
Archives
- Today
- Total
프로그래밍 삽질 중
this 내용 정리 본문
https://www.zerocho.com/category/JavaScript/post/5b0645cc7e3e36001bf676eb
https://www.youtube.com/watch?v=pgo6URFz8tc&list=PLcqDmjxt30Rt9wmSlw1u6sBYr-aZmpNB3&index=6
this
아무것도 없는 this = 기본적으로 window
this는 함수가 호출될 때 정해짐
- 함수를 호출 할 때 함수 앞에 객체가 있으면 this는 객체
- 함수가 화살표 함수면 this는 안 바뀜
- new를 붙일 경우 객체는 자기 자신
this를 바꾸는 것
(참고 : https://ibrahimovic.tistory.com/29)
- bind : this 값을 영구적으로 바꿈, 새로운 함수를 만듦
- call : this를 특정값으로 지정 가능, 매개변수를 직접 받음
- apply : call과 동일, 매개변수를 배열로 받음
[예제]
const obj = {
name: "test",
sayName() {
console.log(this.name); //test - 1
function inner() {
console.log(this.name); //window.name = undefined - 2
}
inner();
},
};
obj.sayName(); //test
//1
//obj가 붙고 화살표 함수가 붙지 않음
//2
//함수 호출 할 때 this를 바꿔주는 동작이 없음, window
const obj2 = {
name: "test",
sayName: () => {
console.log(this.name);
function inner() {
console.log(this.name); //sayName
}
inner();
},
};
const obj3 = {
name: "test",
sayName() {
console.log(this.name); //test
const inner = () => {
console.log(this.name); //test -2
};
inner();
},
};
obj.sayName(); //test, test
//2 함수 호출 시 this
//inner() : 함수를 바꿔주는 행동 x
//화살표 함수 : 부모 함수(sayName)의 this를 그대로 가져옴
//함수를 호출하기 전까지는 뭔지 모름
'과거 프로그래밍 자료들 > Javascript&typescript' 카테고리의 다른 글
비동기 Promise & async await 2 (1) | 2022.09.14 |
---|---|
비동기 Promise & async await 1 (0) | 2022.09.14 |
스코프 체인 (0) | 2022.09.09 |
[호출스택]실행하지 않고 함수에서 변수로 접근 가능한지 알기 (1) | 2022.09.08 |
함수와 함수 호출 차이, 고차함수 (0) | 2022.09.08 |