js 怎么查看对象?

js 怎么查看对象?

可以用js提供的for循环来获得。假设js对象为objfor(var i in obj){document.write(i+":"+obj[i])}list = [{a:1,b:2 }, {a:3,b:4 },
JavaScript510