์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- ๊ตญ๋น์ง์
- Til
- ๋ฐฑ์ค
- ๋๋ฆผ์ฝ๋ฉ
- javascript
- ์ฝ๋ฉํ ์คํธ
- ์ฝ๋ฉ
- ๋ชจ๊ฐ์ฝ
- JS
- Python
- ๊ทธ๋ฆฌ๋
- fe
- mongodb
- ์ฝ๋ฉ์ ํ
- react
- ํ์ด์ฌ
- HTML
- ํ ์ดํ๋ก์ ํธ
- heapq
- node.js
- ๊ฐ๋ฐ
- CSS
- ํ๋ก๊ทธ๋๋จธ์ค
- ํฌ๋กค๋ง
- ๋ ธ๋ง๋์ฝ๋
- ํ๋ก ํธ์๋
- ์๊ณ ๋ฆฌ์ฆ
- error
- ํ๋ก์ ํธ
- KDT
- Today
- Total
๋ชฉ๋กClient/Javascript (11)
๐ฑ → ๐ณ
๐ ์ ๊ฐ๊ตฌ๋ฌธ(Spread Syntax) 2015๋ ์ ์ถ๊ฐ ๋ ๋ฌธ๋ฒ ๋ฒก์๋์์ ํฐ ๋ฐ์ดํฐ๋ฅผ ๋ค๋ฃฐ ๋ ์์ฃผ ์ฌ์ฉ ๋ณํฉ, ๊ตฌ์กฐ ๋ถํด ํ ๋น ๋ฑ์ ๋ค์ํ๊ฒ ์ฌ์ฉ ๊ฐ๋ฅ ๋ฐฐ์ด ๋๋ ๊ฐ์ฒด์ ๊ฐ์ ํ๋ํ๋ ๋ฐ๋ก ๋ถ๋ฆฌํด์ ํฉ๋ฟ๋ฆฌ๋ ์ญํ ์ํ๋ ๋ณ์ ์์ ...์จ์ฃผ๋ฉด ๋จ ๐ ์์1 const arr = [1, 2, 3, 4, 5, 6]; console.log(arr); //[ 1, 2, 3, 4, 5, 6 ] console.log(...arr); //1 2 3 4 5 6 ๐ ์์2 function spread(first, ...rest) { console.log(first); console.log(rest); } spread(1, 2, 3, 4, 5, 6, 7); ๐ node.js ๋ด์ฅ ๊ฐ์ฒด ์ฌ์ฉํ๊ธฐ ํ์ผ ์์น, ํ์ผ ์ด๋ฆ..
๐ Code Refactoring : ํ๋ก๊ทธ๋จ์ ๋์์ ๋ณํ์ง ์๊ณ , ํ๋ก๊ทธ๋จ์ ๋ด๋ถ ๊ตฌ์กฐ๋ฅผ ๊ฐ์ ํ๋ ๊ฒ! ์์ ๊ธฐ์ -> ์๋ก์ด ๊ธฐ์ ์ฝ๋ ๋นํจ์จ -> ํจ์จ(๋ฐ๋ณต๋ฌธ ์ค์ด๊ธฐ, ์ค๋ณต ๊ธฐ๋ฅ ์ ๊ฑฐ, ๋ฉ๋ชจ๋ฆฌ ํจ์จ ์ฆ๋) ์ฝ๋ ๊ฐ๋ ์ฑ ๋์ด๊ธฐ ์ฝ๋์ ํ์ฅ์ฑ ๋์ด๊ธฐ ๐ JS์์ Module ์ฌ์ฉํ๊ธฐ JS ๋ Module ์ ์ง์ํจ ๐ 2๊ฐ์ง ๋ฐฉ์ CommonJS ๋ฐฉ์ ES6 ๋ฐฉ์ โ CommonJS ๋ฐฉ์ node.js์์ ์ฌ์ฉํ๋ ๋ชจ๋ ๋ฐฉ์ ํค์๋ : require/ exports require๋ก ๋ชจ๋์ ๋ถ๋ฌ ์ฌ ๋, ์ฝ๋ ์ด๋ ๊ณณ์์๋ ๋ถ๋ฌ ์ฌ ์ ์์ โ๏ธ ์ ์ฒด ๋ชจ๋๋ก์จ ๋ด๋ณด๋ด๊ณ , ์ ์ฒด๋ฅผ ํ๋์ Obj๋ก ๋ฐ์์ ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ animals.js // @ts-check const animals = ['dog', ..
๐ JSDoc ๋? ์ผ์ข ์ ์ฃผ์ ๋ฌ๊ธฐ ๊ฑฐ์ ํ์คํ๊ฐ ๋์ด์ Vscode, Webstorm ๋ฑ ์์๋ ๊ธฐ๋ณธ์ผ๋ก ๊ธฐ๋ฅ์ ์ ๊ณต ํน์ ํํ๋ก ์ฃผ์์ ๋ฌ๋ฉด ํด๋น ์ฃผ์ ๋ด์ฉ์ ํตํด ํจ์์ ๊ธฐ๋ฅ ๋๋ ๋งค๊ฐ ๋ณ์์ ํ์ ๋ฑ์ ๋ฏธ๋ฆฌ ์๋ ค์ค ์ ์์ ์ฃผ์์ ๋ฌ ๋ /** */ ๋ก ๋ฌ๋ฉด ๋จ โ JSDoc ๋ถ๊ฐ ๊ธฐ๋ฅ @todo ๋ฉ๋ชจ์ฒ๋ผ ์ฌ์ฉ ๊ฐ๋ฅ, ๊ฐ๋ฐํ๋ค๊ฐ ๋ฉ์ถ๋ ๋ค์๋ถํฐ ํด์ผํ ๊ฒ ์จ๋๊ธฐ /** * @todo ๋ด์ผ ์๋ก์ด ๋งค๊ฐ๋ณ์ ์ถ๊ฐ ํด์ผํจ due to 10:30 .. */ @deprecated ๋ ์ด์ ํด๋น ๊ธฐ๋ฅ์ ์ฐ์ง ์์ ๋ ์ถ๊ฐ -> ํจ์ ์ฐ๋ฉด ๊ฐ๋ก์ค์ด ๊ทธ์ด์ง @type {ํ์ ํํ} ๋ณ์์ ํน์ ํ์ ์ ์ฐ๋ผ๊ณ ์๋ ค ์ค ๋ ์ฌ์ฉ์ด ๊ฐ๋ฅ ์์ฆ์ typescript๊ฐ ์ด ์ญํ ์ ๋์ ํด์ค์ ์ ์์ฐ๊ธด ํจ โ JSDoc..
๐ ๋ฌธ์์ด ๊ด๋ จ JS ๊ธฐ๋ฅ โ .length(); ๋ฌธ์์ด ๊ธธ์ด โ .indexOf(""); ๋ฌธ์์ด ์์น ์ฐพ๊ธฐ const str = "Hello, world"; console.log(str.indexOf("world")); // 7 โ .slice(start, end); ๋ฌธ์์ด ์๋ฅด๊ธฐ โ .replace("์ฐพ์ ๋ฌธ์", "๋ฐ๊ฟ ๋ฌธ์"); ๋ฌธ์์ด ๋ฐ๊พธ๊ธฐ โ .repeat(๋ฐ๋ณต ํ์); ๋ฌธ์์ด ๋ฐ๋ณตํ๊ธฐ let str = "์ฐ์"; let longStr = str.repeat(5) + "์ฐ"; console.log(longStr); โ .trim(); ์ ๋ค ๊ณต๋ฐฑ ๋ฌธ์ ์ ๊ฑฐํ๊ธฐ let str = " ์ฐ์์ฐ "; let trimStr = str.trim(); console.log(trimStr); //์ฐ์์ฐ ๐ ..
๐ DOM(Document Object Model) ๐ DOM API : Document Object Model Application Programming Interface โ querySelector("์์ ์ ํ์") CSS ์์ ์ ํ์๋ฅผ ์ฌ์ฉํด์ ์์ ์ด ๊ฐ์ ธ์ค๊ณ ์ถ์ดํ๋ ์์๋ฅผ ๊ฐ์ ธ์ค๋ ๋ฉ์๋ ๋ฌธ์์์ ๋ง๋๋ ์ ์ผ ์ฒซ๋ฒ์งธ ์์๋ฅผ ๋ฐํํจ โ getElementById("id") ID ์ด๋ฆ์ ๋ถ๋ฌ์ ํด๋น ID๋ฅผ ๊ฐ์ง๋ ์์๋ฅผ ๋ถ๋ฌ์ค๋ ๋ฉ์๋ โ classList classList.add('class1') : ์ ํ ์์์ class1์ด๋ผ๋ class ๋ํ๊ธฐ classList.remove('class1') : ์ ํ ์์์ class1์ด๋ผ๋ class ์ ๊ฑฐ classList.contains('class1')..
๐ Object ์ ๊ทผ ์ถ๊ฐ ์ญ์ ํ๋กํผํฐ ์กด์ฌ ์ฌ๋ถ ํ์ธ Object method method: ๊ฐ์ฒด property๋ก ํ ๋น ๋ ํจ์ ๐ this function sayHello() { console.log(`Hello, I'm ${this.name}`); console.log(this); } let boy = { name: "Justin", sayHello, }; let girl = { name: "Anna", sayHello, }; boy.sayHello(); //Hello, I'm Justin girl.sayHello(); //Hello, I'm Anna โ ํ์ดํ ํจ์์ this ํ์ดํ ํจ์๋ ์ผ๋ฐ ํจ์์๋ ๋ฌ๋ฆฌ ์์ ๋ง์ this๋ฅผ ๊ฐ์ง์ง ์์ ํ์ดํ ํจ์ ๋ด๋ถ์์ this๋ฅผ ์ฌ์ฉํ๋ฉด, ๊ทธ thi..
๐ ๋ณ์๋ช ๊ธฐ๋ณธ ๊ท์น ๋ณ์ ์ด๋ฆ์ผ๋ก๋ ๋ฌธ์/์ซ์/_/$ ๋ง ์ฌ์ฉ ๊ฐ๋ฅ ์ฒซ ๊ธ์๋ ์ซ์ ๋ถ๊ฐ ์์ฝ์ด ์ฌ์ฉ ๋ถ๊ฐ ์๋ฏธ๋ฅผ ๋ดํฌ ํ๋ ๋ณ์ ์ด๋ฆ์ด ์ข์ ์ ๋จ์ด๊ฐ ๋ช ์ฌ -> ๋ณ์ ์ ๋จ์ด๊ฐ be๋์ฌ -> boolean ์ ๋จ์ด๊ฐ ๋์ฌ -> ํจ์ ์์, ๊ณ ์ ๊ฐ์ ์ ์ฒด ๋๋ฌธ์๋ก ์ ์ธ ๐ ๋ฐ์ดํฐ ํ์ : string, number, boolean, undefined, null, object, array ๋ฑ โ typeof : ํด๋น ์๋ฃ(๋ณ์, ๋ฐ์ดํฐ ๋ฑ)์ ๋ฐ์ดํฐ ํ์ ์ ๋ฐํํด์ค ์ฃผ์, object์์ ์๋ฃ์ null๋ object๋ผ๊ณ ๋ธ console.log(typeof null); console.log(typeof "hi"); console.log(typeof 77); // {} ๋น object ์ ์ธ consol..
๋ฐ๋๋ผJS๋ก ํฌ๋กฌ์ฑ ๋ง๋ค๊ธฐ: From #2.7 to #2.16 All Courses – ๋ ธ๋ง๋ ์ฝ๋ Nomad Coders ์ด๊ธ๋ถํฐ ๊ณ ๊ธ๊น์ง! ๋๊ผฌ์ค๊ณผ ํจ๊ป ํ์คํ์ผ๋ก ์ฑ์ฅํ์ธ์! nomadcoders.co #2.7 Functions argument : function์ ์คํํ๋ ๋์ ์ด๋ค ์ ๋ณด๋ฅผ function์๊ฒ ๋ณด๋ผ ์ ์๋ ๋ฐฉ๋ฒ #2.8 Functions part Two NaN : Not a Number ํจ์๋ฅผ ๋ถ๋ฅด๊ณ , ์ ๋ ฅํ๋ ๊ฒ ๊น์ง ๋ฐฐ์ //object ์์ function์ด ์๋ ๊ฒฝ์ฐ const player = { sayHello: function(otherName){ console.log("Hello " + otherName); } } player.sayHello("nico"); play..