Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript의 매개변수 및 인수.


함수 매개변수는 함수 정의에 있는 변수의 이름입니다. 함수 인수는 함수에 전달되고 함수가 받는 실제 값입니다.

다음은 JavaScript에서 매개변수와 인수를 보여주는 코드입니다 -

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result,.sample{
      font-size: 20px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>Function parameters and arguments</h1>
<div class="sample"></div>
<div style="color: green;" class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to pass the above values as arguments to the function.
</h3>
<script>
   let sampleEle = document.querySelector('.sample');
   let resEle = document.querySelector(".result");
   let arr = [22,33,44,55];
   sampleEle.innerHTML = arr;
   function add(ARR){
      let sum = 0;
      ARR.forEach(element => {
         sum+=element;
      });
      return sum;
   }
   document.querySelector(".Btn").addEventListener("click", () => {
      resEle.innerHTML = 'After addition = ' + add(arr);
   });
</script>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

JavaScript의 매개변수 및 인수.

'여기를 클릭' 버튼을 클릭하면 -

JavaScript의 매개변수 및 인수.