JavaScript
JavaScript 函数定义
toString() 方法将函数作为一个字符串返回
源代码:
点击运行 »
<p> toString() 将函数作为一个字符串返回:</p> <p id="demo"></p> <script> function myFunction(a, b) { return a * b; } document.getElementById("demo").innerHTML = myFunction.toString(); </script>
运行结果:
点击运行 »