Computer >> Máy Tính >  >> Lập trình >> Javascript

Không xác định trong JavaScript

Thuộc tính không xác định của JavaScript chỉ định xem một biến đã được khai báo hoặc gán giá trị chưa.

Sau đây là đoạn mã triển khai thuộc tính không xác định JavaScript -

Ví dụ

<!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 {
      font-size: 18px;
      font-weight: 500;
      color: red;
   }
</style>
</head>
<body>
<h1>JavaScript undefined property</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>CLICK the above button to know if variable age has been defined or not</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   let age;
   document.querySelector(".Btn").addEventListener("click", () => {
      if (age === undefined) {
         sampleEle.innerHTML =
         "The variable age has not been defined yet or no value is given to it";
      } else
         sampleEle.innerHTML =
         "The variable age is defined and its value = " + age;
   });
</script>
</body>
</html>

Đầu ra

Không xác định trong JavaScript

Khi nhấp vào nút 'BẤM VÀO ĐÂY' -

Không xác định trong JavaScript