別了 JavaScript中的isXX系列

來源:互聯網
上載者:User

複製代碼 代碼如下:isNull: function(a){
return a === null;
},
isUndefined: function(a){
return a === undefined;
},
isNumber: function(a){
return typeof a === 'number';
},
isString: function(a){
return typeof a === 'string';
},
isBoolean: function(a){
return typeof a === 'boolean';
},
isPrimitive: function(b){
var a = typeof b;
return !!(b === undefined || b === null || a == 'boolean' || a == 'number' || a == 'string');
},
isArray: function(a){
return proto_obj.toString.call(a) === '[object Array]';
},
isFunction: function(a){
return proto_obj.toString.call(a) === '[object Function]';
},
isPlainObject: function(o){
if (!o || o === win || o === doc || o === doc.body) {
return false;
}
return 'isPrototypeOf' in o && proto_obj.toString.call(o) === '[object Object]';
},
isWindow: function(o){
return o && typeof o === 'object' && 'setInterval' in o;
},
isEmptyObject: function(o){
for(var a in o) {
return false;
}
return true;
}

以上isXX系列中,isUndefined在類庫中用的最多。如判斷是否傳入了某個參數,判斷對象是否擁有某個屬性等等。但這個函數是不必存在,我已將其移除。理由如下

1,isUndefined 與 使用全等(===)或typeof 多了一層函數調用。很明顯多一層函數調用比直接使用原生的運算子效率會低(雖然有些微不足道),但如果isUndefined調用次數很多如上萬次還是很明顯的。我曾經在郵箱架構中加入了該函數,調用次數有4000多次,從效能分析工具看佔用了近1%的時間。僅僅一個判斷佔1%的調用時間還是很可怕的。當然,郵箱架構內的isUndefined處在多層閉包的頂層,訪問其也會佔用較多時間。如果這一條還不足以讓你放棄isUndefined,請看下面。
2,函數從一定程度上是對一些代碼的封裝,抽象。是組織良好代碼的方式之一,且有利於降低代碼的複雜性。但isNull/isUndefined/isBoolean/isNumber/isString函數內僅有一句,抽象層次很低。因此完全不必封裝而提取出一個函數。
3,isUndefined(a) 與 a === undefined相比並不會節省幾個位元組(呵,你可以命名的更短但損失了可讀性)。
綜上,我去掉了類庫中對基本類型判斷的isNull/isUndefined/isBoolean/isNumber/isString,需要用到這些判斷的時候直接使用typeof運算子等。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.