简单教程
提交运行
代码编辑器:
<p>函数可以访问函数内部定义的变量</p> <script> function myFunction() { var a = 4; document.write(a * a); } myFunction(); </script>
运行结果: