javascript

JSEclipse

Adobe LAB の Javascriptプラグインhttp://www.interaktonline.com/Documentation/JSEclipse/jseclipse.htm#2000_installing.htmEdit Remote Site JSEclipse from Adobe Labs http://download.macromedia.com/pub/labs/jseclipse/autoinstall

関数の追加と関数の借用

// 新しい木クラスを作成します function Tree(name, leaf, bark) { this.name = name; this.leaf = leaf; this.bark = bark; } // 関数を追加します Tree.prototype.describe = function() { return this.name + ": leaf=" + this.leaf +", bark=" + this.b…