원의 너비를 구하는 함수를 선언해보자.
<script>
function circleArea(r){
let Area = r*r*3.14;
return width;
}
document.write(circleArea(10));
</script>
-> 314
function sum(x){
let y = 50;
return x + y;
}
document.write(sum(10);
document.write('<br>');
document.write(x, y);
function sum(x, y){
return x + y;
}
위의 함수에 arrow function을 활용하면 다음과 같다.
let sumArrowFunction = (x, y) => x + y;
동일한 기능을 가진 함수를 한 줄로 작성할 수 있는 기능이다.