```var x = 123456789012345678901234567890; x = x.t...
# suitescript
j
Copy code
var x = 123456789012345678901234567890;
x = x.toString();
console.log("x = " + x)
var y = ''
for(var i =0; i < 9; i++){
  if(x[i] !== '.'){
  y += x[i]
  }
}
console.log("y = " + y)
s
I think here you just exceeded the largest integer, so it switched to exponential notation