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

JavaScript의 symbol.description 속성

<시간/>

symbol.description 속성은 기호 개체에 대한 선택적 설명을 반환하며 읽기 전용 속성입니다.

다음은 symbol.description 속성에 대한 코드입니다 -

예시

<!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;
   }
   div {
      font-size: 20px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>JavaScript symbol.description property</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to get the description for the symbols.
</h3>
<script>
   let fillEle = document.querySelector(".sample");
   let desc = [];
   desc.push(Symbol("New").description);
   desc.push(Symbol("Hello").description);
   desc.push(Symbol.iterator.description);
   document.querySelector(".Btn").addEventListener("click", () => {
      desc.forEach((item) => (fillEle.innerHTML += item + "<br>"));
   });
</script>
</body>
</html>

출력

JavaScript의 symbol.description 속성

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

JavaScript의 symbol.description 속성