snipdbits
I've been rocking the Javascript one liners lately. Syntax like this is way not noob friendly.
// both are the same if ( 0 == 0 && 0 === 0) alert('0 is equal to 0, and 0 is the same value and object type as 0'); if ( 0 == 0 && 0 === 0) alert('0 is equal to 0, and 0 is the same value and object type as 0');
