If I declare a JavaScript boolean variable like this:
var IsLoggedIn;
And then initialize it with either true or 1, is that safe? Or will initializing it with 1 make the variable a number?
|
If I declare a JavaScript boolean variable like this:
And then initialize it with either |
|||||
|
|
Types are dependent to your initialization:
But take a look at this example:
Your variables' type depends on the assigned value in JavaScript. |
||||
|
|
|
No it is not safe. You could later do var It is possible to do
You can also pass the non boolean variable into the
|
|||
|
If you want
If you initialize it with However at any time the variable
This will not cause an error. |
||||
|
|
|
You can use and test uninitialized variables at least for their 'definedness'. Like this:
Furthermore, there are many possibilites: if you're not interested in exact types use the '==' operator (or ![variable] / !![variable]) for comparison (that is what Douglas Crockford calls 'truthy' or 'falsy' I think). In that case assigning true or 1 or '1' to the unitialized variable always returns true when asked. Otherwise [if you need type safe comparison] use '===' for comparison.
PS: you can't test 'definedness' for nonexisting variables though. So:
gives a reference Error ('HelloWorld is not defined') (is there a better word for 'definedness'? Pardon my dutch anyway;~) |
||||
|
|
Variables in Javascript don't have a type. Non-zero, non-null, non-empty and There's a Boolean type though, as are literals |
|||
|
|
The variable will become what ever type you assign it. Initially it is |
|||
|
|
|
How about something like this:
Then you can use it like this:
I have not tested it for performance, but converting from type to type should not happen too often otherwise you open your app up to instability big time! |
||||
|
|
|
As this very useful tutorial says:
|
|||
|
|