搜索文档
accMod(arg1, arg2): number
arg1
arg2
number
数字取余防止精度丢失
两数字相除取余
Example
accMod(10, 3) // => 1
accMod(10.5, 3) // => 1.5
accMod(-10, 3) // => -1