기본적인 함수 예제 : a부터 b까지 더하는 함수
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
/* */
const sumAll = function (a, b) {
let sum = 0;
for (let i = a; i <= b; i++){
sum += i;
}
return sum;
}
document.write(`1부터 100까지의 합 : ${sumAll(1, 100)}<br>`); // 5050
document.write(`1부터 500까지의 합 : ${sumAll(1, 500)}`); // 125250
</script>
</body>
</html>