IE Detection in 7 Bytes – Javascript

Great bit of javscript code that detects if a browser is Internet Explorer in just 7 bytes:

if(!+"\v1") // true only in IE

(via http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html)