运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Math.log2()</h2> <p>Math.log2() returns the base 2 logarithm of a number.</p> <p>How many times must we multiply 2 to get 8?</p> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = Math.log2(8); </script> </body> </html>