Why are Octal numeric literals not allowed in JavaScript strict mode? What is the harm?
In case a developer needs to use Octals (which can mistakenly change a numbers meaning), is there a workaround?
The "why" part of the question is not really answerable.
As for "how", off the top of my head...
"use strict";
var x = parseInt('010', 8);
document.write(x);