I’m trying to write a conditional for when an object property’s value is blank, but it is not triggering. This is my code. Any idea how I should write this?
console.log(vid);
if (vid.video == undefined){
//DO STUFF HERE - Doesn't work
}
The “object” in the screenshot is referenced in the code above as variable vid. I also tried undefined in the conditional.

I see some misunderstading here:
You say
when an object property's value is blankbut your codedif (vid.video != ""){.I think you need
if (!vid.video) {