本文總結的代碼片斷(六)--持續更新前端
前端經常使用代碼片斷(一) 點這裏
前端經常使用代碼片斷(二) 點這裏
前端經常使用代碼片斷(三) 點這裏
前端經常使用代碼片斷(四) 點這裏
前端經常使用代碼片斷(五) 點這裏
前端經常使用代碼片斷(六) 點這裏segmentfault
console.log( 'Nothing here %cHi Cat %cHey Bear', // Console Message 'color: blue', 'color: red' // CSS Style );
const styles = ['color: green', 'background: yellow'].join(';'); const message = 'Some Important Message Here'; // 3. 傳入styles和message變量 console.log('%c%s', styles, message);
本節參考文章:多彩的console.logpost
function version( v1, v2 ) { var arr1 = v1.replace(/[-_]/g,'.').split('.'); var arr2 = v2.replace(/[-_]/g,'.').split('.'); console.log(arr1,arr2); var len = Math.max(arr1.length, arr2.length); for ( var i = 0; i < len; i++ ) { if(parseInt(arr1[i]) == parseInt(arr2[i])) continue; return parseInt(arr1[i]) < parseInt(arr2[i]) ? true :false; } return false; }
本節參考文章:如何比較版本號大小spa