함수 Function

Function 1)
//일반 함수
function foo() {}

//화살표 함수
const bar = () => {};

Last updated