So I have two serial numbers and 199 serials in between them:
899720101000105500 (first)
899720101000105699 (last)
I need to print the first serial and then all 199 up to the last serial. The only thing I've found is just +1 to the first serial every time the loop runs and printing it.
I've copied/pasted different parts and this is what I have:
var lowEnd = 899720101000105500;
var highEnd = 899720101000105699;
var arr = [];
while(lowEnd <= highEnd){
arr.push(lowEnd++);
}
Is there a max number length you can store in a variable?