그거 이름이 뭐더라....
- const yesOrNo = true ? "yes" : "no": 삼항 연산자 (ternary operator)
- ?: : Elvis Operator
- const { name, age } = person : 구조 분해 할당 (Destructure assignment)
- ... : 전개 구문 (Spread operator)
- ... : Rest parameters
destructure assignment vs Spread operator vs Rest parameters
- ~ : Tilde operator
- ~~ : Double tilde operator
- ? : Optional channing
- ?? : nullish 병합 연산자 (Nullish coalescing operator)
- `` : Template literals
- ** : 거듭제곱 (Exponentiation)
- !! : Double not
- const test = { a, b, c }: Property shorthand
- [key: string] : 색인 가능 타입 (Indexable)
- <> : React Fragment 단축 문법
- property: value : CSS 에서
border: 1px solid red
와 같이 property와 value 를 함께 일컫는 말이 declaration
- @ : User-Defined variables
--
코드에 남아있는 중복되고 방해되는 모드 것을 의미한 용어 (불필요한 복잡성). 기능적으로 문제가 있는 요소를 가리키는데 사용