// Short test for exponentiation operator console.log('2 ** 3 =', 2 ** 3); console.log('5 ** 2 =', 5 ** 2); console.log('2 ** 10 =', 2 ** 10); console.log('(2 + 3) ** 2 =', (2 + 3) ** 2); // Test bit shifts console.log('8 << 2 =', 8 << 2); console.log('32 >> 2 =', 32 >> 2); // Test bitwise operations console.log('12 & 10 =', 12 & 10); console.log('12 | 10 =', 12 | 10); console.log('12 ^ 10 =', 12 ^ 10);