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