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;...
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...