console.dir All In One
const arr = [
[
"james",
{
"name":"James Zhao",
"description":"CEO --- Create Employee’s Opportunity"
}
],
[
"jerryzhu",
{
"name":"Jerry Zhu",
"description":" 有所作为是生活的最高境界。"
}
],
];
console.log(arr);
console.log(JSON.stringify(arr, null, 4));
// Node.js terminal 中展开显示多层嵌套的对象
console.dir(arr);
https://cdn.xgqfrms.xyz/json/app.json