Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 683 Bytes

divmod.md

File metadata and controls

30 lines (20 loc) · 683 Bytes
标题 标签
divMod(求两个数的商和模) math(数学)

返回由给定数字的商和余数组成的数组。

  • 使用 Math.floor() 获得除法 x / y 的商。
  • 使用模运算符 (%) 获得除法 x / y 的余数。

代码如下:

const divMod = (x, y) => [Math.floor(x / y), x % y];

调用方式:

divMod(8, 3); // [2, 2]
divMod(3, 8); // [0, 3]
divMod(5, 5); // [1, 0]

应用场景

结果如下:

<iframe src="codes/javascript/html/divMod.html"></iframe>