1. 程式人生 > >json格式

json格式

ctype head javascrip type n) each doc for text

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var a = [‘a‘,‘a‘,‘a‘,‘b‘,‘b‘,‘c‘,‘c‘,‘c‘,‘c‘,‘d‘,‘hha‘,‘niha‘];
var s = ‘‘;
var json = {};
a.forEach(function(val,index){
if(s!=val){
s = val;
}
json[s]?json[s]++:(json[s]=1);
})
console.log(json)
</script>
</body>
</html>

json格式