ID:269672
 
I am having problems using round(). I want it to round the varible Pay1 to the nearest integer. Could someone help me.
Without a second argument round() functions like floor(), just make the second argument 1 to get the nearest integer.

  round(1.9)      // returns 1
round(1.9, 1) // returns 2