假设以下是我们的嵌套数组-
const arrayObject = [ [ { Name: "John" }, { countryName: "US" } ], [ { subjectName: "JavaScript" }, { teacherName: "Mike" } ] ];
要将嵌套数组转换为普通数组,请使用flat()
以下代码中的as概念-
const arrayObject = [ [ { Name: "John" }, { countryName: "US" } ], [ { subjectName: "JavaScript" }, { teacherName: "Mike" } ] ]; const output = arrayObject.flat(); console.log(output);
要运行上述程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo50.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\JavaScript-code> node demo50.js [ { Name: 'John' }, { countryName: 'US' }, { subjectName: 'JavaScript' }, { teacherName: 'Mike' } ]