Questions tagged as 'octal'

3
answers

What are Decimal, Hexadecimal and Octal notation numbers?

What are Decimal (base 10), Hexadecimal (base 16), and Octal (base 8) notation numbers? In the book the code looks like this: <?php // numero decimal $a = 1234; // numero octal (equivalente a 83 em decimal) $a = 0123;...
asked by 22.01.2015 / 13:53
2
answers

Zero start numbers in JavaScript

I'm having a confusing problem, in which I send a 000214 by AJAX to a PHP controller, and there it arrives with result 140 . I gave a simple console.log(000214); and the result in the JS itself was 140 . How can...
asked by 11.03.2016 / 14:53