I have an array result2 of Objects, and each Object has attributes. So if I call console.dir(result3); in my console I see 
I would lie to sort my Objects, for example I need Object with
sm[['_akzsilb'] === 'LV'
sm ['_graphem'] === 'diphtong']
I tried
const result3 = [];
for (let i = 0; i < result2.length; i++) {
if (result2[i].sm[['_akzsilb'] === 'LV' && ['_graphem'] === 'diphtong']) {
result3.push(result2[i]);
}
}
But it doesnt't work. I guess this is right direction, because if I try something, like
const result3 = [];
for (let i = 0; i < result2.length; i++) {
if (result2[i].sm) {
result3.push(result2[i]);
}
}
it works. So how I could go 'deeper' and access both (I need both, so they both must exist by object) _akzsilb and _graphem