Introduction
First off, the parseInt method assumes the followingsource:
- if it starts with 0x - then it is hex.
- if it starts with 0 - then it is octal
- else it is decimal
So you could go with the solution, never start with 0 ;)
Solution
With ECMA-262 (aka EcmaScript 5, aka JavaScript version 5) one of the new features is strict mode which you turn on with "use strict"
When you opt-in to strict mode the rules changesource:
- if it starts with 0x - then it is hex
- else it is decimal
The only way to get octal then is to set the radix parameter to 8.
Problem
At the time of writing the support for ECMAScript 5 isn't consistent across all browsers and so some browsers do not support it at all, which means the solution isn't useful to them. Other browsers implementations are broken, so even though the proclaim it supports it, they do not.
The below image is of IE 10 release preview versus Chrome 19 - where IE runs it correctly but Chrome doesn't.

The easy way to check your browser is to go to: http://repl.it/CZO#
You should get 10, 10, 8, 10, 16 as the result there, if so great - if not your browser is broken :(
parseInt('014'), notparseInt(014). – James McLaughlin Feb 21 '12 at 15:19014is an octal number.0x14is hex. – Marc B Feb 21 '12 at 15:20014=10x8+4=12– shiplu.mokadd.im Feb 21 '12 at 15:21var myParseInt = function (num, radix) { return parseInt(num, radix || 10); };? Unsure what will happen if you changemyParseInttoparseInt. – powerbuoy Feb 21 '12 at 15:24