<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var setValue, getValue;
(function(){
var n=0;
getValue=function(){
return n;
};
//getValue为读取函数
setValue=function(x){
n=x;
};
//setValue为设置函数
})();
alert(getValue());//第一次读取是初始值
setValue(2);//使用setValue函数把初始值更改为2
alert(getValue());//第二次读取就为更改后的值
</script>
</body>
</html>
感想---好久没更新博客了,最近感觉自己真的老了,很多东西学习起来很困难,没有动力,没有反馈,总是感觉学习没有任何进展,最终导致对学习编程越来越没有信心,闲言碎语,写在这吧,留个念想。