📄 11-5.txt
字号:
// Return true if object o is an instance of class (constructor) c.function instanceOf(o, c) { var p = o.__proto__; while(p != null) { if (p == c.prototype) return true; p = p.__proto__; } return false;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -