Home  >  Article  >  Web Front-end  >  javascript创建数组之联合数组的使用方法示例_基础知识

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

WBOY
WBOYOriginal
2016-05-16 17:06:541045browse

复制代码 代码如下:

//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");
        }
Statement:
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