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

<!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>



甫里
浏览 2182回答 3
3回答

qq_T_T

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

turboburst

计算机语言中, A==B 的意思都是判断A和B是否相等,如果相等那就返回true,不相等返回false。 你这个, return this.indexOf(text) == 0; 意思就是返回text的下标是否为0
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript