Possible Duplicate:
How to deal with big numbers in javascript
Javascript does't hold numbers > 17 digits. is there any other way to put bigger number into a variable? apart from parsing it into string?
example:
var x = 12647586984746263548565656;
alert(x);
Try this out. it wont work since x is a large number.