vote up 6 vote down star
1

I assumed this question has already been asked here, but I couldn't find any, so here it goes:

Is there a null coalescing operator in Javascript?

For example, in C#, I can do this:

String someString = null;
var whatIWant = someString ?? "Cookies!";

The best approximation I can figure out for Javascript is using the conditional operator:

var someString = null;
var whatIWant = someString ? someString : 'Cookies!';

Which is sorta icky IMHO. Can I do better?

flag

In C# this is called the null coalescing operator, not "isnull". I suggest you change the title to make this clearer - but it's up to you. – Jon Skeet Jan 24 at 18:23
Ahh, thank you. The .NET SDK doesn't name it, just calls it the "??" operator :\ – Daniel Schaffer Jan 24 at 18:27

5 Answers

vote up 18 vote down check

The JavaScript equivalent of the C# null coalescing operator (??) is using a logical OR (||):

var whatIWant = someString || "Cookies!";

There are cases (clarified below) that the behaviour won't match that of C#, but this is the general, terse way of assigning default/alternative values in JavaScript.


Clarification

Regardless of the type of the first operand, if casting it to a Boolean results in false, the assignment will use the second operand. Beware of all the cases below:

alert(Boolean(null)); // false
alert(Boolean(undefined)); // false
alert(Boolean(0)); // false
alert(Boolean("")); // false
alert(Boolean("false")); // true -- gotcha! :)

This means:

var whatIWant = null || new ShinyObject(); // is a new shiny object
var whatIWant = undefined || "well defined"; // is "well defined"
var whatIWant = 0 || 42; // is 42
var whatIWant = "" || "a million bucks"; // is "a million bucks"
var whatIWant = "false" || "no way"; // is "false"
link|flag
perfect, thank you! – Daniel Schaffer Jan 24 at 18:27
@Ates, can you modify your answer with a warning that zeros and empty strings are treated the same as null or undefined values by the || operator? – Daniel Schaffer Jan 24 at 18:54
@Daniel Schaffer - I agree that some clarification would help. Added. – Ates Goral Jan 24 at 19:10
1  
First class answer... if I could +1 again, I would. Thanks! – Daniel Schaffer Jan 24 at 19:15
Strings like "false", "undefined", "null", "0", "empty", "deleted" are all true since they are non-empty strings. – some Jan 25 at 5:25
vote up 1 vote down
whatIWant === null
link|flag
I don't think that's exactly what I want.. i'll clarify my question. – Daniel Schaffer Jan 24 at 18:25
vote up 2 vote down

After reading your clarification, @Ates Goral's answer provides how to perform the same operation you're doing in C# in JavaScript.

@Gumbo's answer provides the best way to check for null; however, it's important to note the difference in == versus === in JavaScript especially when it comes to issues of checking for undefined and/or null.

There's a really good article about the difference in two terms here. Basically, understand that if you use == instead of ===, JavaScript will try to coalesce the values you're comparing and return what the result of the comparison after this coalescence.

link|flag
One things that bugged me about that article (and Jash) is, an undefined window.hello property being evaluated to null for some reason. It should be undefined instead. Try it Firefox error console and see for yourself. – Ates Goral Jan 24 at 19:20
vote up -1 vote down

beware of the JavaScript specific definition of null. there are two definitions for "no value" in javascript. 1. Null: when a variable is null, it means it contains no data in it, but the variable is already defined in the code. like this:

var myEmptyValue = 1;
myEmptyValue = null;
if ( myEmptyValue === null ) { window.alert('it is null'); }
// alerts

in such case, the type of your variable is actually Object. test it.

window.alert(typeof myEmptyValue); // prints Object
  1. Undefined: when a variable has not been defined before in the code, and as expected, it does not contain any value. like this:

    if ( myUndefinedValue === undefined ) { window.alert('it is undefined'); } // alerts

if such case, the type of your variable is 'undefined'.

notice that if you use the type-converting comparison operator (==), JavaScript will act equally for both of these empty-values. to distinguish between them, always use the type-strict comparison operator (===).

link|flag
Actually, null is a value. It's a special value of type Object. A variable being set to null means it contains data, the data being a reference to the null object. A variable can be defined with value undefined in your code. This is not the same as the variable not being declared. – Ates Goral Jan 24 at 18:54
The actual difference between a variable being declared or not: alert(window.test)/*undefined*/; alert("test" in window)/*false*/; window.test = undefined; alert(window.test)/*undefined*/; alert("test" in window)/*true*/; for (var p in window) {/*p can be "test"*/} – Ates Goral Jan 24 at 18:59
vote up 2 vote down

If || as a replacement of C#'s ?? isn't good enough in your case, because it swallows empty strings and zeros, you can always write your own function:

 function $N(value, ifnull) {
    if (value === null || value === undefined)
      return ifnull;
    return value;
 }

 var whatIWant = $N(someString, 'Cookies!');
link|flag
alert(null || '') still alerts an empty string, and I think I actually like that alert('' || 'blah') alerts blah rather than an empty string - good to know though! (+1) – Daniel Schaffer Jan 24 at 18:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.