简单教程
提交运行
代码编辑器:
<p>设置函数参数默认值</p> <script> function myFunction(x, y) { y = y || 0; return x * y; } document.write(myFunction(4)); </script>
运行结果: