function getBytes( x ){ var bytes = []; var i = 4; do { bytes[--i] = x & (255); x = x>>8; } while ( i ) return bytes; } alert(getBytes(666));