告诉大家一个小秘密
在对javascript中的基本数据类型进行对象操作的时候是会创建临时包装对象的哦
验证:Number.prototype.param1 = 'number param1';
String.prototype.param1 = 'string param1';
Boolean.prototype.param1 = 'boolean param1';
alert(1..param1);
alert(''.param1);
alert(true.param1);
alert(1..constructor);
alert(''.constructor);
alert(true.constructor);