I know that in PHP 5.3 instead of using this redundant ternary operator syntax:
JavaScript
x
2
1
startingNum = startingNum ? startingNum : 1
2
…we can use a shorthand syntax for our ternary operators where applicable:
JavaScript
1
2
1
startingNum = startingNum ?: 1
2
And I know about the ternary operator in JavaScript:
JavaScript
1
2
1
startingNum = startingNum ? startingNum : 1
2
…but is there a shorthand?
Advertisement
Answer
JavaScript
1
2
1
var startingNumber = startingNumber || 1;
2
Something like that what you’re looking for, where it defaults if undefined?
JavaScript
1
4
1
var foo = bar || 1; // 1
2
var bar = 2;
3
foo = bar || 1; // 2
4
By the way, this works for a lot of scenarios, including objects:
JavaScript
1
2
1
var foo = bar || {}; // secure an object is assigned when bar is absent
2