js 判断json 是否存在某个key
Posted 独孤_败天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 判断json 是否存在某个key相关的知识,希望对你有一定的参考价值。
1 // var num=parseInt(Math.random()*10) 2 // console.log(num) 3 // console.log(2+9+"") 4 // console.log(typeof(2+9+"")) 5 6 // console.log(2+""+9) 7 // console.log(""+2+9) 8 9 10 11 var obj={ 12 "name":"Jack", 13 "age":24, 14 "gender":"male" 15 } 16 17 // console.log("weqweqwe" in obj) 18 console.log(obj.hasOwnProperty("name"))
以上是关于js 判断json 是否存在某个key的主要内容,如果未能解决你的问题,请参考以下文章