<!DOCTYPE html>
<html>
<head>
<title>01_define.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript">
function fn1(){
console.log('fn1');
}
console.log(typeof fn1);
var fn2 = fn1;
fn2();
fn1();
fn1 = function(){
console.log('fnnnn1');
}
fn2();
fn1();
var o1 = new Object();
var o2 = o1;
o2.name = 'evy';
console.log(o1.name);
o1.name='lin';
console.log(o2.name);
</script>
</head>
<body>
This is my HTML page. <br>
</body>
</html>