我有一个JSON对象,如下所示:
const object = [
{
name: 'first',
color: 'red',
structure:
{
height: 50,
width: 20
}
},
{
name: 'second',
color: 'blue',
structure:
{
height: 10,
width: 60
}
},
{
name: 'third',
color: 'green',
structure:
{
height: 80,
width: 40
}
}
];
我现在想要找到带有'name:second'的JSON对象的索引,如何在不使用javscript / typescript和没有jQuery的情况下进行循环?如果我想要'name:second'的索引,结果应为'1'。