<!DOCTYPE html><html><head> <title>Prototype Pattern Example</title> <script type="text/javascript"> alert(typeof Array.prototype.sort); //"function" alert(typeof String.prototype.substring); //"function" String.prototype.startsWith = function (text) { return this.indexOf(text) == 0; }; var msg = "Hello world!"; alert(msg.startsWith("Hello")); //true </script></head><body></body></html>
3 回答
turboburst
TA贡献26条经验 获得超15个赞
计算机语言中, A==B 的意思都是判断A和B是否相等,如果相等那就返回true,不相等返回false。 你这个, return this.indexOf(text) == 0; 意思就是返回text的下标是否为0
添加回答
举报
0/150
提交
取消