๐ Reference
๐ Index
Underscore
_
ํ๋ผ๋ฏธํฐ(ํจ์ ๋งค๊ฐ๋ณ์)์ underscore ์๋ฏธ
- ๋ฐ์ค ๊ธฐํธ
_
๋ JavaScript์์ ์ ํจํ ์๋ณ์์ด๋ค.
- ๋จ์ผ underscore์ ์ด ๋ฐ์ธ๋ฉ(๋งค๊ฐ๋ณ์)๋ฅผ ๋ฌด์ ํด์ผ ํจ์ ๋ํ๋ด๊ธฐ ์ํด ์ฌ์ฉํ๋ ๊ฒ์ด๋ค.
- JavaScript๋ ๋งค๊ฐ๋ณ์ ์นด์ดํธ ๊ฒ์ฌ๋ฅผ ์ํํ์ง ์๊ธฐ ๋๋ฌธ์ ๋งค๊ฐ๋ณ์๋ฅผ ์์ ํ ์๋ตํ ์ ์๋ค.
const fun = _ => console.log('Hello, world!')
- ์ ํจ์๋ฅผ ์คํํ๋ ๋ฐ ๋งค๊ฐ๋ณ์๊ฐ ํ์ํ์ง ์์ผ๋ฏ๋ก ๊ฐ๋ฐ์๋ ์ด๋ฅผ ํ์ํ๋ ๊ท์น์ผ๋ก ๋ฐ์ค์ ์ฌ์ฉํ๋ค.
const fun = () => console.log('Hello, world!')
fun()
arr.forEach(function (_, i) {...})