in javascript:
d={one: false, two: true}
d.one
d.two
d.three
I want to be able to differentiate between d.one and d.three. By default they both evaluate to false, but in my case they should not be treated the same.
|
in javascript:
I want to be able to differentiate between |
|||
|
|
|
You can do
or
You probably want hasOwnProperty as the
|
|||
|
|
Well,
Javascript does have some funky true false evaluation at times, but this isn't one of those situations:
To check for
Or you can check if
|
||||
|
|
|
The values aren't strictly false:
Also, see comments by olliej and Ken below. |
|||||||||||
|