반응형
const addItem = function(a,b) {
return a+b;
}
const addItem = (a,b) => {
return a+b;
}
const addItem = (a,b) => return a+b;
반응형
'실전 단아 개발 가이드' 카테고리의 다른 글
observer (0) | 2024.01.22 |
---|---|
프르미스 (0) | 2024.01.21 |
package.json 설치 명령어 (0) | 2024.01.21 |
https://unpkg.com/browse/@mui/material@5.15.1/Button/Button.d.ts (0) | 2024.01.21 |
A set of React components implementing Google's Material Design specification with the power of CSS Modules (0) | 2024.01.21 |