<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 数学</h1>
<p>Math.atanh() 返回数的双曲反正切:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.atanh(0.5);
</script>
</body>
</html>