摘要:
节流: 1. var throttle = function(fn,delay){ var pre = Date.now(); return function(){ var __me = this; var args = arguments; var now = Date.now(); if(now 阅读全文
摘要:
1.var c = 1; function c(c){ console.log(c) } c(2) // c is not a function 2. var c = 1; function c (){} console.log(typeof c) //'number' 3. if(!b in wi 阅读全文