Skip to content

Instantly share code, notes, and snippets.

@antenorr
Created May 2, 2021 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antenorr/f55899d383c7f8f52c31ebded5333b1c to your computer and use it in GitHub Desktop.
Save antenorr/f55899d383c7f8f52c31ebded5333b1c to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/koxiramefo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
class Human {
constructor () {
this.gender = "male";
}
printGender () {
console.log(this.gender)
}
}
// -------------------------------//
class Teacher extends Human {
constructor () {
super()
this.name = "John";
}
ScreamName () {
console.log("Hey " + this.name + "!" )
}
}
const fellow = new Teacher;
fellow.printGender();
fellow.ScreamName();
</script>
<script id="jsbin-source-javascript" type="text/javascript">class Human {
constructor () {
this.gender = "male";
}
printGender () {
console.log(this.gender)
}
}
// -------------------------------//
class Teacher extends Human {
constructor () {
super()
this.name = "John";
}
ScreamName () {
console.log("Hey " + this.name + "!" )
}
}
const fellow = new Teacher;
fellow.printGender();
fellow.ScreamName();</script></body>
</html>
class Human {
constructor () {
this.gender = "male";
}
printGender () {
console.log(this.gender)
}
}
// -------------------------------//
class Teacher extends Human {
constructor () {
super()
this.name = "John";
}
ScreamName () {
console.log("Hey " + this.name + "!" )
}
}
const fellow = new Teacher;
fellow.printGender();
fellow.ScreamName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment