ES6学习手册(12)
Posted designbyly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6学习手册(12)相关的知识,希望对你有一定的参考价值。
构造函数继承
function Phone(brand, price) {
this.brand = brand
this.price = price
}
Phone.prototype.call = (function() {
console.log(‘打电话请给我’)
})
function SmartPhone(brand, price, color, size) {
Phone.call(this, brand, price)
this.color = color
this.size = size
}
SmartPhone.prototype = new Phone
SmartPhone.prototype.constructor = SmartPhone
SmartPhone.prototype.photo = function() {
console.log('拍照')
}
SmartPhone.prototype.playGame = function() {
console.log('玩游戏')
}
const chuizi = new SmartPhone('锤子', 3333, '红色', '3.3yincun')
console.log(chuizi)
每日一句
在泪水中浸泡过的微笑最灿烂,从迷惘中走出来的灵魂最清醒。
以上是关于ES6学习手册(12)的主要内容,如果未能解决你的问题,请参考以下文章