lend.js

来自「JsDoc Toolkit 是一个把js描述格式化成文档的工具。开发者只需按Js」· JavaScript 代码 · 共 33 行

JS
33
字号
 /** @class  */var Person = Class.create(    /**      @lends Person.prototype    */    {      initialize: function(name) {            this.name = name;        },        say: function(message) {            return this.name + ': ' + message;        }    } );/** @lends Person.prototype */{	/** like say but more musical */	sing: function(song) {	}}/** @lends Person */{	getCount: function() {	}}/** @lends Unknown.prototype */{	notok: function() {	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?