对字符串执行的算术将导致 NaN对字符串执行的算术将导致 NaN<!DOCTYPE html><html><body> <h1>JavaScript 数字</h1> <p>数字除以非数字字符串会成为 NaN (Not a Number):</p> <p id="demo"></p> <script>document.getElementById("demo").innerHTML = 100 / "Apple";</script> </body></html>