SoFunction
Updated on 2025-04-03

Small examples of object inheritance in Javascript


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
/**
* format of json object
{key:value,key:value,key:value..}
*/
//Small example of creating an object
//-----1
var r={};
="tom";
=18;
//-----2
var r={name:"tom",age:20};//json object
alert();
//---1,2 are equivalent
//------------Writing of prototype mode
//----1
function Person(){};
="Chinese";
=20;
//The abbreviation of prototype mode--2
function Person(){};
={name:"Chinese",
age:20,}
//-----------------------------------------------------------------------------------------------------------------------------
//================================
/* {name:"Chinese",
age:20,}
The above format is itself an object. If you pay it to another object's prototype, it will make
All properties of another object. In essence, it is inheritance
*/
//================================
//Standard object inheritance examples, Person, Student
//Define a Person object
function Person(){};
="Chinese";
=20;
var person=new Person();
//Define a Student object
function Student(){};
=person;
="It can be available";
var stu=new Student();
="No love is allowed";
alert();//Instance inherited from the parent object
alert();//New attribute added by yourself

//Define a Teamleader object
function Teamleader(){};
=new Student();//Inherited from Student
=8;//Teamleader's own attributes
//Create your own instance
var teamleader=new Teamleader();
alert();
="Not available";
alert();
//=================================
/*The core of inheritance in js is prototype*/
//=================================
</script>
</head>
<body>

</body>
</html>