js使用for of遍历map

js使用for of遍历map_第1张图片

 

//使用for of遍历map
console.log("---")
console.log(odata.studentDetails)
let obj = odata.studentDetails[0].answerSituation
for(let [key,value] of Object.entries(obj)){
    console.log(value)
}

你可能感兴趣的:(js,javascript,前端,vue.js)