简单教程
提交运行
代码编辑器:
<p>全局变量计数</p> <script> var counter = 0; function add() { return counter += 1; } function myFunction(){ document.write(add()); } myFunction(); </script>
运行结果: