第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

JavaScript tips and tricks - 2

標(biāo)簽:
架構(gòu)

Always specify the second argument - parseInt
parseInt converts a string to an int number, the syntax is:

parseInt(str, [radix])

The second argument is optional, which specify the radix of the first argument.
If you omit radix, following the rules:
->if the string begins with ‘0x’, the radix is 16.
->if the string begins with ‘0’, the radix is 8.
->otherwise, the radix is 10.
Therefore, the following code will confuse somebody who don’t know this rules:

parseInt('08'); // 0parseInt('08', 10); // 8

Delete an element from an array
Whether can we use delete keyword to achieve this:

var arr = [1, 2, 3, 4, 5];delete arr[1];arr; // [1, undefined, 3, 4, 5]

You can see, delete can’t really delete an item. The removed item is replace with an undefined value, the array’s length is not reduced.In fact, the splice method existing in the Array.prototype can be helpful:

var arr = [1, 2, 3, 4, 5];arr.splice(1, 1);arr; // [1, 3, 4, 5]

Function as object
Function in javascript is also object; therefore we can assign properties even functions to function.
See example below:

function add() {    return add.count++;}add.count = 0;add();    // 0add();    // 1add();    // 2

We assign a count property to function to record how many times the function is called.
This can be done in a more elegant way:

function add() {    if(!arguments.callee.count) {        arguments.callee.count = 0;    }    return arguments.callee.count++;}add();    // 0add();    // 1add();    // 2

arguments.callee refer to the function which is current running.

Find the max value in an array
There is an array contains all of number, how to find out the max value.

var arr = [2, 3, 45, 12, 8];var max = arr[0];for(var i in arr) {    if(arr[i] > max) {        max = arr[i];    }}max; // 45

This also works, but we all know there is a Math object in Javascript:

Math.max(2, 3, 45, 12, 8); // 45

Can this be helpful? yes

var arr = [2, 3, 45, 12, 8];Math.max.apply(null, arr); // 45

Add console.log support in IE
We often use console.log to debug javascript in firefox with firebug support.
But it will break down IE’ execution, because IE doesn’t has console object, we can simple fix it like this:

if (typeof(console) === 'undefined') {    window.console = {        log: function(msg) {            alert(msg);        }    };}console.log('debug info.');
點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消