如何使用 JavaScript map() 方法访问嵌套对象?
假设我们有如下嵌套对象 −
var details = [ { id:"101", firstName:"John", lastName:"Smith", age:25, countryName:"US", subjectDetails: { subjectId:"Java-101", subjectName:"Introduction to Java" }, }, { "uniqueId": "details_10001" } ]
使用 map() 和 typeOf 访问嵌套对象。以下为代码 −
样例
var details = [ { id:"101", firstName:"John", lastName:"Smith", age:25, countryName:"US", subjectDetails: { subjectId:"Java-101", subjectName:"Introduction to Java" }, }, { "uniqueId": "details_10001" } ] details.map((nestedObject)=>{ if (typeof nestedObject.subjectDetails != 'undefined') console.log("The subject Name="+nestedObject.subjectDetails.subjectName); })
要运行以上程序,需要使用以下命令 −
node fileName.js.
此处,我的文件名是 demo119.js。
输出
将产生以下输出 −
PS C:\Users\Amit\JavaScript-code> node demo119.js The subject Name=Introduction to Java
广告