I really like aligning the ? and the : of my ternary operator when they don\'t fit on a line, like this:
var myVar = (condition ? ifTrue : ifFalse );
This works and is certainly valid. It's especially useful in more complicated use cases, like nested ones.
var a = test1 ? b : test2 ? c : d;