why you should basically never use the Number constructor
¶ by Rob FrieselInspired by some recent entanglements with a vendor’s API:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var n = new Number(1); | |
alert(n); // 1 | |
typeof n; // object | |
n instanceof Number; // true | |
var nn = 1; | |
alert(nn); // 1 | |
typeof nn; // number | |
n instanceof Number; // false | |
n == nn; // true | |
typeof n == typeof nn; // false | |
n++; | |
nn++; | |
alert(n); // 2 | |
alert(nn); // 2 | |
n == nn; // true | |
typeof n; // number | |
typeof nn; // number | |
typeof n == typeof nn; // true |
The type coercion will ultimately work in your favor but the main point is that the type coercion has to take place in the first place. Granted, it is probably an edge case 1 to do something like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var n = new Number(x); // where x is a global storing an incrementer | |
function doMath(a){ | |
if (typeof a == "number") { | |
return a + x; | |
} | |
} | |
doMath(n); |
…but you never know. There’s some strange code out there 2.
About Rob Friesel
Software engineer by day. Science fiction writer by night. Weekend homebrewer, beer educator at Black Flannel, and Certified Cicerone. Author of The PhantomJS Cookbook and a short story in Please Do Not Remove. View all posts by Rob Friesel →3 Responses to why you should basically never use the Number constructor
Pingback: an annotated guide to the Google JavaScript Style Guide at found_drama
Pingback: Linkdump for December 2nd | found drama
Leave a Reply