I have an instance of a class, in which several number and string properties are initialized to 0 or "" respectively. When accessing these properties they are "undefined". Initializing these properties to anything else, ie 0.1 or " " and it is considered defined.
Why? Are 0 and "" equivalent to undefined?
export class Car {
id = 0
name = ""
}
If I have an instance of Car and try to access a property it will be "undefined",
let myCar = new Car
if (myCar.id) {
console.log('yay')
} else {
console.log('boo')
}
It will show 'boo'.