Valor = 19.90;
MyArray = valor.split(".");
The code hangs, integer variable, however,
Valor = "19.90";
MyArray = valor.split(".");
alert(MyArray[0]) = 19;
alert(MyArray[1]) = 90;
I would like to know how to use the split int variable,...
asked by
21.03.2014 / 16:41