js判斷數組,對象是否存在某一未知元素

1.對象   數組

1 var obj = {
2     aa:'1111',
3     bb:'2222',
4     cc: '3333'
5 };
6 var str='aa';
7 if(str in obj){
8     console.log(obj[str]);
9 }

可是對於obj內的原型對象,也會查找到:this

1 var obj = {
2     aa:'1111',
3     bb:'2222',
4     cc: '3333'
5 };
6 var str='toString';
7 if(str in obj){
8     console.log(obj[str]);
9 }

因此,使用hasOwnProperty()更準確:spa

 1 var obj = {
 2     aa: '1111',
 3     bb: '2222',
 4     cc: '3333'
 5 };
 6 var str = 'aa';
 7 if (obj.hasOwnProperty(str)) {
 8     console.log(111);
 9 }else{
10     console.log(222);
11 }

2.數組prototype

如何判斷數組內是存在某一元素?主流,或者大部分都會想到循環遍歷,其實不循環也能夠,經過數組轉換查找字符串:code

1 var test = ['a', 3455, -1];
2 
3 function isInArray(arr, val) {
4     var testStr = arr.join(',');
5     return testStr.indexOf(val) != -1
6 };
7 alert(isInArray(test, 'a'));

經過While循環:對象

Array.prototype.contains = function(obj) {
    var len = this.length;
    while (len--) {
        if (this[len] === obj) {
            return true
        }
    }
    return false;
};

for循環:blog

Array.prototype.contains = function(obj) {
    var len = this.length;
    for (var i = 0; i < len; i++) {
        if (this[i] === obj) {
            return true
        }
    }
    return false;
}
相關文章
相關標籤/搜索