When I first started to develop web based applications and used JavaScript I came across some JS code with a ? in it. I didn't know what it was for and Googling "JavaScript ?" didn't help either. Here's a quick summary on how it works
Boolean ? true action : false action
So this:
1 2 3 4 5 6 7 | var x = 2; if (x > 1) window.alert( 'True' ); else window.alert( 'False' ); |
Becomes this:
1 2 3 4 | var x = 2; x>1 ? window.alert( 'True' ) : window.alert( 'False' ) ; |
No comments:
Post a Comment