Adding 1 to each in array from 1 to 15 maximum.
with Numeric Separators .
Code:var n = "11_11_11_11_11_11_11_11_11_11"; var addone = "1"; var maxNum = "15"; var separator = "_"; function addNum(n, separator, addone, maxNum) { return result.join("_"); }
Result
Is it possible to add a large numbers with SeparatorsCode:... "11_11_11_11_11_11_11_11_11_12" ... "11_11_11_11_11_11_11_11_11_13" ... "11_11_11_11_11_11_11_11_11_14" ... "11_11_11_11_11_11_11_11_11_15" ... "11_11_11_11_11_11_11_11_12_1" ... "11_11_11_11_11_11_11_11_12_2" ... "11_11_11_11_11_11_11_11_12_3"?




?
Reply With Quote
