实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
    <title>Array Type Example 7</title>
5
    <script type="text/javascript">
6
        
7
        var colors = ["red", "blue", "green"];    //creates an array with three strings
8
        alert(colors.toString());    //red,blue,green
9
        alert(colors.valueOf());     //red,blue,green
10
        alert(colors);               //red,blue,green
11
12
    </script>
13
</head>
14
<body>
15
16
</body>
17
</html>