when I try to get arguments starting with 0, like this case here 012 it is transferring it to 010 why is that can someone explain?
function func1(a, b, c) {
console.log(arguments[0]);
console.log(arguments[1]);
console.log(arguments[2]);
}
func1(1, 012, 3);