标签: javascript c# undefined
有没有相当的?运算符存在于JavaScript中的C#中以打败'undefined'检查? 例如:
var count = something ?? 0;
答案 0 :(得分:15)
使用逻辑OR
var count = something || 0;