1. 문자열1.1 문자열 포멧팅(String Literal)1) 백틱 사용const user = { name: 'Hee', age: 10, favor: 'Game' }console.log(`제 이름은 ${user.name}이고, 나이는 ${user.age}이며, ${user.favor}를 좋아합니다.`) 2) 정규식... 나중에 돌아와서 하는걸로...자료구조1. Map: 유일 Key 및 Key-Value 집합: 자료구조를 위해 사용const initialized = new Map([ [1, 'first'], [2, 'second'], [3, 'third'], ['Aaron', { phone: '010-000-0000', address: 'Earth' }], ['Baron', { phone: '0..
1. Parameter 관련1.1 Rest Parameter: 함수 파라미터 펼치기function foo(first, ...rest) { // 1, 2, 3, 4 = ...rest console.log(rest) // [ 2, 3, 4 ] = rest console.log(...rest) // 2, 3, 4 = ...rest}foo(1, 2, 3, 4) // 2, 3, 4 = ...rest1.2 함수 기본 파라미터값(Default Parameters)function create({ name = 'Unnamed', age = 1, favor = undefined }) { return { name, age, favor ..
1. 얕은 복사 (Shallow Copy): 객체나 배열의 첫번째 수준 복사: 객체의 최상위 값만 복사, 내부 참조된 객체나 배열은 복사X → 원본과 동일한 참조 1.1 얕은 복사 예시1) 배열의 얕은 복사const arr = [1, 2, 3];const shallowCopy = arr.slice(); // 또는 [...arr]shallowCopy[0] = 100;console.log(arr); // [1, 2, 3] - 원본 배열은 변경되지 않음console.log(shallowCopy); // [100, 2, 3] - 복사본은 변경됨arr[0] = 90;console.log(arr); // [90, 2, 3] console.log(shallowCopy); // [100, 2, 3] 2) 객체의 얕은..
0. 비구조화 할당 (Destructuring Assignment): 배열이나 객체의 값을 변수에 쉽게 할당하기 위한 방법 1. 종류1.1 배열 비구조화 할당 (Array Destructuring)const arr = [1, 2, 3];// 비구조화 할당const [a, b, c] = arr; // 원하는 별칭으로 재할당 가능console.log(a); // 1console.log(b); // 2console.log(c); // 3-> 배열의 비구조화 할당에서는 순서가 중요1.2 객체 비구조화 할당 (Object Destructuring)const object = { name: 'Hee', age: 10, favor: 'Game' }const { name, age } = objectconsole.log(..
- Total
- Today
- Yesterday
- ASAC
- useEffect
- acas#acas7기
- useState
- asac7
- useLayoutEffect
- asac7#asac
- ssh
- git
- asac7기
- memo
- useContext
- useReducer
- react
- useMemo
- useCallback
- Nginx
- asac#asac7기
- useRef
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |