ES6 class 基本使用
Posted mengfangui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 class 基本使用相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>ES6 class</title>
</head>
<body>
<script type="text/javascript">
class Person {
//实例方法
constructor(name) {
this.name = name;
}
//原型链方法
sayName() {
console.log(this.name)
}
}
//不存在变量提升
let tom = new Person(‘tom‘);
tom.sayName();
</script>
</body>
</html>
以上是关于ES6 class 基本使用的主要内容,如果未能解决你的问题,请参考以下文章