Javascript

기명함수와 익명함수

jennyiscoding 2022. 7. 7. 14:13

1. 기명함수

 

function hellow(){

  console.log('hello');

}

 

2. 익명함수

let world = function(){

  console.log('world');

}

 

함수호출

hello();

world();