I have found this piece of code in jQuery Migrate v1.1.1
jQuery.migrateMute===void 0&&(jQuery.migrateMute=!0),function(e,t,n){/* anything */}
And I really wonder about 2 things:
1) What does ===void 0
mean?
2) Why these conditions are followed by a comma? My tests showed me it will always get executed.
Its just not I really need to know,but i am really interested, because I thought I knew everything about JS. ;)