Those are octal numbers a.k.a base 8.
You should avoid using that syntax since it is not allowed in strict mode.
You can, however, use them in ES6/ES2015 with some modified syntax.
0o100; // 64
0o50; // 40
0o10; // 8
3
solved What is this number type?