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;
      color: blueviolet;
   }
   .sample {
      color: red;
   }
</style>
</head>
<body>
<h1>Short-circuit assignment</h1>
<div class="sample">a=22 || 0 || 0<br />b=0 && 22 && 22</div>
<div class="result"></div>
<br />
<button class="Btn">Click Here</button>
<h3>Click on the above button to see the values of variable a and b in the above expression</h3>
<script>
   let resEle = document.querySelector(".result");
   let BtnEle = document.querySelector(".Btn");
   BtnEle.addEventListener("click", () => {
      let a, b;
      a = 22 || 0 || 0;
      b = 0 && 22 && 22;
      resEle.innerHTML = "a = " + a + "<br>";
      resEle.innerHTML += "b = " + b + "<br>";
   });
</script>
</body>
</html>

출력

JavaScript의 단락 할당

"여기를 클릭" 버튼을 클릭하면 표현식이 평가됩니다. 여기서 주의할 점은 0이 아닌 숫자는 false로 평가된다는 것입니다.

JavaScript의 단락 할당