inheritancejs:一个简单的javascript继承实用程序

时间:2024-06-07 09:22:21
【文件属性】:

文件名称:inheritancejs:一个简单的javascript继承实用程序

文件大小:4KB

文件格式:ZIP

更新时间:2024-06-07 09:22:21

JavaScript

继承js 用于实现javascript继承的简单实用程序 安装 npm install inheritancejs 用法 var extend = require ( 'inheritancejs' ) ; function Base ( name , age ) { this . name = name ; this . age = age ; } Base . prototype . state = function ( ) { return { name : this . name , age : this . age } ; } ; Base . prototype . log = function ( ) { console . log ( this . state ( ) ) ; } function


【文件预览】:
inheritancejs-master
----package.json(1KB)
----gulpfile.js(2KB)
----LICENSE(1KB)
----inheritancejs.src.js(441B)
----inheritancejs.js(233B)
----.gitignore(21B)
----README.md(778B)

网友评论