<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
/**
* Window 是一个非常重要的对象
*/
console.log(this);
/*function alert(){
}*/
//alert(123);
function test(){
}
test();
(function(n1){
console.log(123+n1);
})(123);
</script>
</head>
<body>
</body>
</html>