quote:
Originally posted by waterbottle
A bit offtopic but,
is it possible to do bitwise comparision in JScript? (like &, | etc in C).
for example something like; if(Message.charAt(0) & 1) { /*do something if the bit 1 in the frst letter of Message is true*/ }
I tried & but that didn't work...
You have to use
&& or
||. You might like to check this out too.
http://www.msgpluslive.net/scripts/view/152-Windo...ipt-Documentation/