Can I write the 'if else' shorthand without the else?
eg:
var x=1;
x==2? dosomething:doNothingButContinueCode;
I've noticed putting 'null' for the else works but I have no idea why or if that's a good idea.
EDIT: Some of you seem bemused why I'd bother trying this. Rest assured it's purely out of curiosity. I like messing around with js.
var | varsyntax. Careful as it's potentially difficult to "see", especially (IMO) ternaries being problematic. Use sparingly. – Jared Farrish Jun 17 '12 at 6:03:)– Jared Farrish Jun 17 '12 at 6:08foo = bar | cat;, where if the first is false? null?, it "falls through" to the second. I've only seen it, though, and don't use it. – Jared Farrish Jun 17 '12 at 6:09a || bora && b, otherwisebwill always be evaluated. – KennyTM Jun 17 '12 at 6:11