Is there a way to extract the keys with false values within this specified JSON?
xyz: any = {
abc: {
'a': true,
'b': true,
'c': true,
'd': false,
'e': {
'f': true,
'g': false
},
'h': true,
'i': true
}
}