JavaScript – Code after case in switch statements
I am trying to decipher this code (MurmurHash) and came across the following lines: switch (remainder) { case 3: k1 ^= (key.charCodeAt(i + 2) & 0xff) << 16; case 2: k1 ^= (key.charCodeAt(i + 1) & 0xff) << 8; case 1: k1 ^= (key.charCodeAt(i) & 0xff); // When is this executed? k1 = (((k1 &… Read More JavaScript – Code after case in switch statements