Using Javascript, is there an equivalent function or functionality so VBScript's IsEmpty function? The VBScript function returns whether the given variable is "empty", e.g. since all the variables are actually VARIANTs, whether or not the VARIANT has a vt of VT_EMPTY, whereas most of what I've found for Javascript is string-specific or not generalizable.
|
|
|
|
|
|
|
|
||||
|
|
|
JavaScript has a number of different values which could be considered "empty" and a number of different ways to test for empty. First things that are empty:
Next how to test for them. JavaScript is loosely typed with a lot of implicit type conversion. This means that when two values are of different types, the standard equals operator
Most of the time, if you're expecting something "truthy", you can just test it directly and it will be coerced to a boolean value. So in short, you could probably get away with defining it as this:
But it often makes more sense just to put a |
||||
|
|
|
Not sure, if this is what it should be
|
||
|
|
|
function isEmpty(value){ return value == null || value === ""; } |
||
|
|
|
|
Not there isnt. You will have always to test your variables against "null", undefined and "". (that is boring) |
||
|
|
