博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript-test1
阅读量:4984 次
发布时间:2019-06-12

本文共 650 字,大约阅读时间需要 2 分钟。

var AAA = function(name, age) {	this.name = name ;	this.age = age;}AAA.prototype.getName = function() {	console.log(this.name);}AAA.prototype.getAge = function() {	console.log(this.age);}var BBB = function(name, age, comments) {	if(this instanceof BBB) {		AAA.call(this, name, age);		this.comments = comments;	} else{		return new BBB(name, age, comments);	}};BBB.prototype = new AAA();BBB.prototype.getComments = function() {	console.log(this.comments);}var bbb = BBB('mhp', 17, 'b');console.dir(bbb);bbb.getName();bbb.getAge();// 17bbb.getComments();// bconsole.log(BBB.prototype instanceof AAA);

  

转载于:https://www.cnblogs.com/maduar/p/5155338.html

你可能感兴趣的文章
smartconfig配置模式
查看>>
arcgis按要求删除点位
查看>>
estore商城案例(二)------登录&添加商品&商品列表(上)
查看>>
$ 专治各种python字符编码问题疑难杂症
查看>>
C++ STL 双端队列deque
查看>>
Oracle中rank() over, dense_rank(), row_number() 的区别:
查看>>
最好用的切图工具——firework
查看>>
Apache Server Status详解
查看>>
linux 内核(系统)、函数的理解、宏的程序调试
查看>>
全面了解Nginx到底能做什么
查看>>
发布MeteoInfo Java 1.2.1
查看>>
使用pie.htc时Border-radius的兼容
查看>>
欧拉项目python代码(12--)
查看>>
学习jsp(3)
查看>>
mybatis-config.xml的解释(zz)
查看>>
HDFS学习指南
查看>>
django连接mongodb mongoengine
查看>>
转载:主要几种通信协议的性能比较
查看>>
以古为新 洒脱自然 ——魏沁的书法艺术
查看>>
笔记故事(2)
查看>>