Fork me on GitHub
  2015年3月3日
摘要: 观察下面两段代码,试写出hello('word');的运行结果:// 变量式声明function hello(msg){ alert(msg); var msg = function(){}; alert(msg);}//函数式声明function hello(msg){ alert... 阅读全文
posted @ 2015-03-03 23:12 bjtqti 阅读(1250) 评论(3) 推荐(0) 编辑