In the code snippet below, there are some rows with a nested field value present and some without. I am attempting to assign a value if the field is present, otherwise I want to set it as 'false'. Despite using the double pipe operator to handle this scenario, the code does not execute.
let penetration = result[i].address_stats[1].penetration || false;
I need assistance, please!