How can i convert a four-character array to an integer?
|
You're trying to turn those characters into ASCII character codes and using the codes as byte values. This can be done using
This returns 2016886139 as expected. However, bear in mind that unlike C++, JavaScript will not necessarily use a one-byte, 256-character set. For instance, Using Unicode, you can represent the above as "砷㵻" instead. |
|||||||||
|
|
|||
|
|
or
if depending on the order you array is filled.. |
|||
|
|
|
I guess that depends on how you want to map the character values to the integer's bits. One straight-forward solution would be:
This produces the integer Update: use |
|||||
|

[0]or at[3]? Also: what base? – Linus Kleen Jan 11 '11 at 12:22