Why are Octal numeric literals not allowed in JavaScript strict mode? What is the harm?
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);