2 Star 0 Fork 0

Weldon0/hrsaas-27

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
class.html 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
Weldon 提交于 2022-05-04 18:00 . 上传功能
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
// 继承
// 内部的核心还是构造函数
// class是语法糖
class Parent {
constructor(name) {
console.log(this)
// this
this.name = '234'
}
sing() {
console.log('父亲')
}
}
class Child extends Parent {
constructor() {
// 调用父类构造函数的时候同时把父类构造函数内部的this指向当前constructor的this
super();
}
sing() {
// 调用父类的sing方法
super.sing()
console.log('儿子')
}
}
const child = new Child()
console.log(child.__proto__ === Child.prototype)
console.log(child.sing())
// Promise.all
// Promise.race
// Array.isArray()
//
// const arr = []
// arr.forEach()
// 什么是实例属性?什么是静态属性?
//
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weldon/hrsaas-27.git
git@gitee.com:weldon/hrsaas-27.git
weldon
hrsaas-27
hrsaas-27
master

搜索帮助