Home > Web Front-end > JS Tutorial > body text

javascript创建数组之联合数组的使用方法示例_基础知识

WBOY
Release: 2016-05-16 17:06:54
Original
1044 people have browsed it

复制代码 代码如下:

//js中的数组可以以键值对的方式存在
        var arr = new Array();
        arr["A"] = "boss";
        arr["B"] = "Emp";
        for (var m in arr) {
            document.write(arr[m] + " ");
        }
        var person = new Object();
        person["name"] = "xiaoli";
        person["age"] = "18";
        person["salary"] = "1888.9";
        for (var p in person) {
            document.write(person[p] + "
");
        }
        //测试使用有age属性呢?
        if (typeof person["age"] == "undefined") {
            document.write("no");
        }
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!