Notice
Recent Posts
Recent Comments
Link
250x250
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
Tags
- ์๋ฐ์คํฌ๋ฆฝํธ
- ํ๋ก์ ํธ์บ ํ
- ์๊ณ ๋ฆฌ์ฆ
- ์ ๋ฐ๋ฏธ
- html
- ๋คํธ์ํฌ
- react
- BFS
- ํด์
- App Runner
- ์ธ์ฌ์ด๋์์
- ์ค๋์ดํผํฉํ ๋ฆฌ
- ๋ฉ๋ชจ๋ฆฌ
- react-query
- ip
- typescript
- ํ๋ก๊ทธ๋๋จธ์ค
- IT๊ฐ๋ฐ์บ ํ
- CS
- #ํ๋ก์ ํธ์บ ํ #ํ๋ก์ ํธ์บ ํํ๊ธฐ #์ ๋ฐ๋ฏธ #์ค๋์ดํผํฉํ ๋ฆฌ #์ ์ง์ฝํฌ๋น #์ธ์ฌ์ด๋์์ #IT๊ฐ๋ฐ์บ ํ #๊ฐ๋ฐ์๋ถํธ์บ ํ #๋ฆฌ์กํธ #react #๋ถํธ์บ ํ #๋ฆฌ์กํธ์บ ํ
- ์ ์ง์ฝํฌ๋น
- ํ๋ก์ธ์ค
- ๊ฐ๋ฐ์๋ถํธ์บ ํ
- cs #๋คํธ์ํฌ
- Algorithm
- javascript
- ๋ฆฌ์กํธ
- ์ค๋ ๋
- ํ์ ์คํฌ๋ฆฝํธ
- React.js
Archives
- Today
- Total
Bin's Blog
this Keyword ๋ณธ๋ฌธ
728x90
๐ค this keyword๋ ์ด๋์ ์ฐ์ด๋?์ ๋ฐ๋ผ์ ๋ปํ๋ ์๋ฏธ๊ฐ ๋ฌ๋ผ์ง๋ค. ํ์ธํด๋ณด์!
1๏ธโฃ ์ผ๋ฐํจ์
์ผ๋ฐ(์ ์ญ)ํจ์์์ ์ฐ๋ฉด this๋ window๋ฅผ ๋ปํ๋ค.
// ๋์ ๋ณด์ด์ง ์์ง๋ง window๋ผ๋ ์ ์ญ๊ฐ์ฒด๊ฐ ๊ฐ์ธ๊ณ ์๋ค.
window: {
function solution() {
console.log(this);
}
}
// window
solution()
2๏ธโฃ Strict mode
Strict mode์์๋ ์ผ๋ฐํจ์ ์์์ this keyword๋ฅผ ๋ถ๋ ์ ๋ undefined๋ผ๋ ๊ฐ์ผ๋ก ์ง์ ํด์ค๋ค.
'use strict';
function solution(){
// undefined
console.log(this)
}
solution()
3๏ธโฃ Object๋ด ํจ์ ์์์ this
ํธ์ถํ ์๊ธฐ ์์ ์ ํฌํจํ ๊ทธ ํจ์๋ฅผ ๊ฐ์ง๊ณ ์๋ Object๋ฅผ ๋ํ๋ธ๋ค.
let object = {
data : "Kim",
ํจ์() {
console.log(this);
}
}
// object = { data: "kim" ...}
object.ํจ์();
4๏ธโฃ Arrow function
์์ ์์์ ์๋ this๋ฅผ ๋ฌผ๋ ค ๋ฐ์์ ์ฐ๊ฒ ๋ค๋ ๋ป์ด๋ค.
const object = {
name: "hobin",
speak() {return `My name is ${this.name}`}
}
// My name is hobin ์ถ๋ ฅ
object.speak();
5๏ธโฃ Class
ํด๋์ค ์์์ ์ฐ๋ฉด ์๋ก ์์ฑ๋๋ object๋ฅผ ๋ปํ๋ค.
let object = {}
function machine() {
// ์๋ก ์์ฑ๋๋ object === instance
this.์ด๋ฆ = "kim"
}
// machine {์ด๋ฆ: "kim"}
let object = new machine();
6๏ธโฃ ์ด๋ฒคํธ ๋ฆฌ์ค๋
์ง๊ธ ์ด๋ฒคํธ๊ฐ ๋์ํ๋ ๊ณณ์ ์๋ฏธํ๋ค.
document.getElementById("๋ฒํผ").addEventListener("click",
function(e) {
// ์ฌ๊ธฐ์ this === e.currentTarget
console.log(this)
// ์ง๊ธ ์ด๋ฒคํธ๊ฐ ๋์ํ๋ ๊ณณ
console.log(e.currentTarget);
})
728x90
'JavaScript' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
JS Framework & Library ํธ๋ ๋ (0) | 2023.10.14 |
---|---|
Garbage collection (0) | 2023.09.18 |
๋ฒ๋ค๋ง์ด๋? (0) | 2023.08.26 |
npm vs yarn (0) | 2023.08.05 |
XML (0) | 2023.07.31 |