# 함수

```
*/파라미터 : input값
function 함수의 이름(파라미터){
  
}

function add(a, b) {
  return a + b;
}

const sum = add(1,2);
```
