匿名関数の呼び出し

343 ワード

 

<html>
<head>
 <title>Example-6.12          </title>
</head>
<body>
<script>
<!--
  function a(){
    alert(this);
	var b=function(){
	   alert('      ');
	   return a();
	}
	return b;
  }

  a(1)(2);
-->
</script>
</body>
</html>