?? functions_nested.js
字號(hào):
/** @constructor */function Zop() {}/** @class*/Foo = function(id) { // this is a bit twisted, but if you call Foo() you will then // modify Foo(). This is kinda, sorta non-insane, because you // would have to call Foo() 100% of the time to use Foo's methods Foo.prototype.methodOne = function(bar) { alert(bar); }; // same again Foo.prototype.methodTwo = function(bar2) { alert(bar2); }; // and these are only executed if the enclosing function is actually called // and who knows if that will ever happen? Bar = function(pez) { alert(pez); }; Zop.prototype.zap = function(p){ alert(p); }; // but this is only visible inside Foo function inner() { }};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -