I want to round TheCount / 5 to the next highest integer. When TheCount = 12
I tried:
Math.round(TheCount / 5); but it returns 2 and I need it to return 3.
How does rounding to the next highest integer work?
Thanks.
I want to round TheCount / 5 to the next highest integer. When TheCount = 12
I tried:
Math.round(TheCount / 5); but it returns 2 and I need it to return 3.
How does rounding to the next highest integer work?
Thanks.