DEV Community

Discussion on: 3 Ways to Set Default Value in JavaScript

Collapse
 
jakebman profile image
jakebman • Edited
// ✅ Ternary works # Ternary does not work.
a = (a === undefined) ? a : b;

The code in this segment is backwards - you're setting a to a only if it is undefined, and using b in all other cases.