简单教程
提交运行
代码编辑器:
<p>函数存储在变量后,变量可作为函数使用</p> <script> var x = function (a, b) {return a * b}; document.write(x(4, 3)); </script>
运行结果: