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 );
You should put the operator on the end of the line. That way its more clear that the statment continued to the next line.