为了账号安全,请及时绑定邮箱和手机立即绑定

问下这段代码中的==0 是什么意思。

问下这段代码中的==0 是什么意思。

甫里 2016-04-06 19:54:25
<!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 回答

?
qq_T_T

TA贡献1条经验 获得超1个赞

等于0说明第一个位置就出现了

查看完整回答
1 反对 回复 2016-04-07
?
turboburst

TA贡献26条经验 获得超15个赞

计算机语言中, A==B 的意思都是判断A和B是否相等,如果相等那就返回true,不相等返回false。 你这个, return this.indexOf(text) == 0; 意思就是返回text的下标是否为0

查看完整回答
反对 回复 2016-04-07
  • 3 回答
  • 0 关注
  • 2181 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信