<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>

 <script type="text/javascript">
  function plus(num1, num2) {
   alert(num1 + num2);

  }
 </script>
 
 <a href="javascript:plus(10,20)">plus 함수이름 부르기(10,20 더하기)</a>


</body>
</html>

 

+ Recent posts