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;
   }
   .sample,.result {
      font-size: 18px;
      font-weight: 500;
      color: red;
   }
   .result {
      color: rebeccapurple;
   }
</style>
</head>
<body>
<h1>De-structuring assignment in JavaScript</h1>
<div class="sample"></div>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to destructure the array and object above</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   let resultEle = document.querySelector(".result");
   let arr = [2, 3, 4, 5];
   let obj = {
      firstName: "Rohan",
      lastName: "Sharma",
   };
   sampleEle.innerHTML = "arr = " + arr + "<br>";
   sampleEle.innerHTML += "obj = {firstName:'Rohan',lastName:'Sharma'}";
   let a, b;
   [a, b] = arr;
   let { firstName, lastName } = obj;
   document.querySelector(".Btn").addEventListener("click", () => {
      resultEle.innerHTML = `a=${a} b=${b} <br>`;
      resultEle.innerHTML += `firstName=${firstName} lastName=${lastName}`;
   });
</script>
</body>
</html>

출력

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

JavaScript의 구조 해제 할당.

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

JavaScript의 구조 해제 할당.