Tagged Questions

61
votes
5answers
4k views

null coalescing operator for javascript?

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 ...
31
votes
9answers
1k views

Is there an “opposite” to the null coalescing operator? (…in any language?)

null coalescing translates roughly to return x, unless it is null, in which case return y I often need return null if x is null, otherwise return x.y I can use return x == null ? null : x.y; Not ...
29
votes
4answers
6k views

Is there a VB.NET equivalent for C#'s ?? operator?

Is there a VB.NET equivalent for C#'s ?? operator?
19
votes
12answers
1k views

What is the “??” operator for?

I was wondering about "??" signs in c# code.. what is it for? And how can i use it? what about "int?"? is it nullable int? See also: ?? Null Coalescing Operator —> What does coalescing mean?
10
votes
5answers
347 views

What do you think about ??= operator in C#? [closed]

Do you think that C# will support something like ??= operator? Instead of this: if (list == null) list = new List<int>(); It might be possible to write: list ??= new List<int>(); ...
8
votes
3answers
781 views

C# ?? operator in Ruby?

Is it possible to implement the ?? operator in Ruby? a = nil b = 1 x = a ?? b # x should == 1 x = b ?? 2 # x should == 1
2
votes
5answers
875 views

A null coalescing assignment operator?

It would be really nice if C# allowed an ??= operator. I've found myself writing the following frequently: something = something ?? new Something(); I'd rather write it like this: something ??= ...
0
votes
1answer
23 views

Operator ?? null coalescing in XNA 4 inside if statement

How can I fix my code under this text? //puncts = puncts ?? new List<Vector2>() { new Vector2(position.X, position.Y) }; if (Vector2.Distance(position, puncts[indexpunkt] = puncts[indexpunkt] ...