分类
编程

新曙光JS教程——函数调用

<html>
<head>
<script>
function myFunction(a, b) {
	return a * b;
}
var x=myFunction(2,3);
document.write(x); 
</script>
</head>
<body>
</body>