화살표 함수 소괄호 중괄호 차이점
()=>{}
()=>() 소괄호 안의 값을 return 해준다.
const react = () => (
<h1>Hello world</h1>
)
const react = () => {
return <h1>Hello world</h1>
}
|
'basic > Vanilla.js' 카테고리의 다른 글
비구조화 할당 (0) | 2021.03.11 |
---|---|
filter() (0) | 2021.03.07 |
export와 import (0) | 2021.02.12 |
keydown, keypress 이벤트 차이점 (0) | 2021.02.09 |
[Vanilla.js] Class (0) | 2021.02.09 |