javascript JS_POO 1:约翰和玛丽......
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript JS_POO 1:约翰和玛丽......相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>JS POO1</title>
</head>
<body>
<script>JS_POO1.js</script>
</body>
</html>
class Person {
constructor (name, age) {
this.age = age;
this.name = name;
}
tellMyName() {
return `I am ${this.name}`;
}
tellMyAge() {
return `I am ${this.age}`;
}
}
const person1 = new Person ('John', 40);
const person2 = new Person ('Mary', 35);
console.log(person1.tellMyName() + " and " + person1.tellMyAge());
console.log(person2.tellMyName() + " and " + person2.tellMyAge());
以上是关于javascript JS_POO 1:约翰和玛丽......的主要内容,如果未能解决你的问题,请参考以下文章
html加javascript和canvas类似超级玛丽游戏
访问控制和 XHR 请求
将嵌入的 CSV 文本拆分为单独的行
Apache Pig 使用逗号和空格加载数据(我该怎么做?)
Java实现超级玛丽,老程序员的国庆假期泡汤了!
向多维对象添加元素? [复制]