The "normal" ==
operators in javascript perform type coercion, and will do their best to treat a string as number or an object as a string where required. The longer === operators will not do type coercion, but rather a strict comparison within the type.
Joel Coehoorn
2009-07-07 20:04:20