Computer >> 컴퓨터 >  >> 프로그램 작성 >> 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: 18px;
      font-weight: 500;
      color: rebeccapurple;
   }
   .sample {
      color: red;
   }
</style>
</head>
<body>
<h1>Passing an object of parameters into a function</h1>
<div class="result"><br /></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to add 4 object values by passing them to a function</h3>
<script>
   let resEle = document.querySelector(".result");
   let BtnEle = document.querySelector(".Btn");
   function addNum({ a, b, c, d }) {
      return a + b + c + d;
   }
   let obj = {
      a: 22,
      b: 33,
      c: 7,
      d: 9,
   };
   BtnEle.addEventListener("click", () => {
      resEle.innerHTML = " The sum of the parameters = " + addNum(obj);
   });
</script>
</body>
</html>

출력

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

매개 변수의 개체를 함수에 전달하는 우아한 방법이 있습니까?

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

매개 변수의 개체를 함수에 전달하는 우아한 방법이 있습니까?