How to represent decimal no

As we all know in flash,
Number(‘077’) = 63 coz it treats it as octal if you start your no. with one zero.
Number(‘0011’) = 9, binary for the numbers starting with 2 zeroes.
Number(‘0XFF’) = 255, hex for the numbers starting with 0x.

Is there any way to specifically tell flash to consider the number to be decimal only?