Math.imul() 函数在 JavaScript 中


Math 对象的 imul() 函数接受两个数字,并返回给定数字的 C 语言风格的 32 位乘法的结果。

语法

其语法如下

Math.imul(47, 56);

示例

 现场演示

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.imul(47, 56);
      document.write("Result: "+result);
   </script>
</body>
</html>

输出

Result: 2632

更新于: 2020 年 6 月 25 日

71 次查看

开启你的 职业生涯

通过完成课程获得认证

开始
广告