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

예제가 있는 JavaScript의 상속

<시간/>

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 {
      font-size: 18;
      color: blueviolet;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>JavaScript Inheritance</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to call the welcome method inherited by person1 and person2 object
</h3>
<script>
   let BtnEle = document.querySelector(".Btn");
   let resEle = document.querySelector(".result");
   function Person(name, age, city) {
      this.name = name;
      this.age = age;
      this.city = city;
   }
   Person.prototype.welcome = function () {
      resEle.innerHTML +=
      " Welcome "+this.name+" age: "+this.age +" city: "+this.city+"<br>";
   };
   BtnEle.addEventListener("click", () => {
      let person1 = new Person("Rohan", 22, "Delhi");
      person1.welcome();
      let person2 = new Person("Shawn", 19, "England");
      person2.welcome();
   });
</script>
</body>
</html>

출력

예제가 있는 JavaScript의 상속

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

예제가 있는 JavaScript의 상속