Skip to content

Instantly share code, notes, and snippets.

@deholic
Created February 25, 2013 07:19
Show Gist options
  • Save deholic/5028295 to your computer and use it in GitHub Desktop.
Save deholic/5028295 to your computer and use it in GitHub Desktop.
parseInt(), WTF?
var str = "0000008";
console.log("print : " + parseInt(str)); // print : 0 {or} print : 8
console.log("print : " + parseInt(str, 10)); // print : 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment