Loading

摘要: Functions are Data This is an important concept that we'll need later on—functions in JavaScript are actually data. This means that the following two ways to define a function are exactly the same:function f(){return 1;}var f = function(){return 1;}Callback Functions Because a function is just l 阅读全文
posted @ 2012-03-27 17:04 .net's 阅读(548) 评论(0) 推荐(0)