Thursday, 12 September 2013

Comparison operators that I haven't seen before

Comparison operators that I haven't seen before

I am trying to decipher the following line of JavaScript code:
delay_start = (typeof delay_start_qs !== "undefined") ? !(delay_start_qs
=== "false") : true;
Specifically the ? followed by the !. Is that a comparison operator?

No comments:

Post a Comment