<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用变量的方式定义函数</title>
<script type="text/javascript">
// function myAlert(){
// alert('hello!');
// }
// var myAlert;
// myAlert();
// alert(myAlert);//undefined 声明变量没有赋值
var myAlert = function () {
alert('hello!');
};//函数的调用不能提前
myAlert();
</script>
</head>
<body>
</body>
</html>