I didn’t know there were other values that mean true also. Thanks.
They don’t mean true. Instead, values are understood as being truthy or falsy.
Truthy and falsy values are different from true and false. It’s a large and complex topic.
2 Likes
oh, ok.
Here’s a chart to help demonstrate why truthy is a large and complex topic. Each of the green things are when one thing us considered to be equal to another thing.
Mostly it’s when using == when such complications occur, which is why we don’t use ==
We use === instead.
1 Like
Continued at
