Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var num = 12345.67;
var str = num + "";
var len = str.split(".")[0].length;
alert(len);
var someNum = 123;
alert(someNum.toString().split('.')[0].length);
someNum = 12345.67
alert(someNum.toString().split('.')[0].length);
Tarwn said:And some recursion is great for the diet![]()