js如何获取json数组的长度


     web开发中,前端经常会获取从后端接收json数据,

   json数据中经常会有json数组,类似于{a:1,b:2,c:3,d:4}


  要遍历这个数组:如下

function getHsonLength(json){
                var jsonLength=0;
                for (var i in json) {
                    jsonLength++;
                }
                return jsonLength;
            }



本文转载:CSDN博客