摘要:
Promise.all = function(iterable) { return new Promise((resolve, reject) => { let result = [] for(const item of iterable) { item.then(data => { result. 阅读全文
摘要:
function longestCommonPrefix2(strs){ if(!strs || strs.length == 0){ return '' } var temp = strs[0] for(var i=0;i<strs.length;i++){ var j = 0; for(;j<s 阅读全文
摘要:
【16进制转换为RGB 】 16进制一般有3位或者6位,如果为3位的话,需要补齐为6位 set16ToRgb(str){ var reg = /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/ if(!reg.test(str)){return;} let newStr = ( 阅读全文
摘要:
我的翻译小站:https://www.zcfy.cc/article/the-history-of-typeof-null 翻译原文链接:http://2ality.com/2013/10/typeof-null.html 更新2013-11-05:我发现用C语言能够很好的解释为什么typeof n 阅读全文
摘要:
翻译原文链接:https://scotch.io/tutorials/handling-authentication-in-vue-using-vuex 我的翻译小站:https://www.zcfy.cc/article/handling-authentication-in-vue-using-v 阅读全文