수학 & 알고리즘
2019. 11. 12.
by. 카유.
function repeat(value, length) { return value - Math.floor(value / length) * length }
value값을 0~length 사이로 반복시킵니다.
댓글