真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

弱類(lèi)型語(yǔ)言javascript開(kāi)發(fā)中的示例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹了弱類(lèi)型語(yǔ)言javascript開(kāi)發(fā)中的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

尼瑪ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話(huà)聯(lián)系或者加微信:028-86922220(備注:SSL證書(shū)合作)期待與您的合作!

測(cè)試1: (未聲明變量自動(dòng)提升為全局變量)

test1();
function test1() {
  function setName() {
    name = '張三'; // 此處沒(méi)有var聲明,提升至全局
  }
  setName();
  console.log(name);// '張三'
}

測(cè)試2: (函數(shù)內(nèi)部局部變量的變量提升)

test2();
function test2() {
  var a = 1;
  function haha() {
    console.log(a);
    var a=1;
  }
  haha(); // undefined
}

測(cè)試3: (給window對(duì)象掛載屬性,作用域提升至全局)

test3();
function test3() {
  var b=2;
  function hehe(){
    window.b = 3; // 此時(shí)的b為全局變量的b
    console.log(b); // 此時(shí)的b是函數(shù)test3()里的b為2
  }
  hehe();
}

測(cè)試4: (變量提升,局部作用域的綜合)

test4();
function test4() {
  c = 5;
  function heihei() {
    var c;
    window.c = 3;
    console.log(c); // 函數(shù)heihei內(nèi)的c為undefined
    console.log(window.c); // 3
  }
  heihei();
}

測(cè)試5: (數(shù)組的長(zhǎng)度的問(wèn)題)

test5();
function test5() {
  var arr = [];
  arr[0] = '1';
  arr[1] = 'b';
  arr[9] = 100;
  console.log(arr.length); // 10
}

測(cè)試6: (等與全等的問(wèn)題)

test6();
function test6() {
  var a = 1;
  console.log(a++); // 1
  console.log(++a); // 3
  console.log(null == undefined); // true
  console.log(null === undefined);// false
  console.log(1 == "1"); // true
  console.log(1 === "1"); // false
  console.log(NaN === NaN) // false;
}

測(cè)試7: (類(lèi)型相關(guān))

test7();
function test7() {
  console.log(typeof 1); // number
  console.log(typeof "hello"); // string
  console.log(typeof typeof "hello"); // string
  console.log(typeof !!"hello"); // boolean
  console.log(typeof /[0-9]/); // object
  console.log(typeof {}); // object
  console.log(typeof null); // object
  console.log(typeof undefined); // undefined
  console.log(typeof [1, 2, 3]); // object
  console.log(toString.call([1, 2, 3])); // [object Array]
  console.log(typeof function () {}); // function
}

測(cè)試8: (parse函數(shù)相關(guān))

test8();
function test8() {
  console.log(parseInt(3.14));// 3
  console.log(parseFloat('3.01aaa'));// 3.01
  console.log(parseInt('aa1.2'));// NaN;
  console.log(parseInt('8.00',16));// 8
  console.log(parseInt('0x8',16));// 8
  console.log(parseInt('8.00',10));// 8
  console.log(parseInt('010',8));// 10
  console.log(parseInt('1000',2));// 1000
}

測(cè)試9: (變量提升,函數(shù)提升與return后阻斷執(zhí)行)

test9();
function test9() {
  function bar() {
    return foo;
    foo = 10;
    function foo(){};
  }
  console.log(typeof bar()); // 'function'
}

測(cè)試10: (作用域與函數(shù)提升)

test10();
function test10() {
  var foo = 1;
  function bar() {
    foo = 10;
    console.log(typeof foo);
    return;
    function foo(){};
  }
  bar(); // number
  console.log(foo); // 1
}

測(cè)試11: (變量提升與函數(shù)提升)

test11();
function test11() {
  console.log(typeof a); // function
  var a = 3;
  function a(){};
  console.log(typeof a); // number
}

測(cè)試12: (arguments對(duì)象)

test12();
function test12() {
  function foo(a) {
    console.log(a);// 1
    arguments[0] = 2;
    console.log(a);// 2
    console.log(arguments.length);// 3
  }
  foo(1,3,4);
}

測(cè)試13: (中間函數(shù)名,直接使用會(huì)報(bào)錯(cuò))

test13();
function test13() {
  var foo = function bar(name) {
    console.log("hello " + name);
  }
  foo("world");
  console.log(bar); // 此處會(huì)報(bào)錯(cuò) bar is not defined
}

測(cè)試14: (在js中定時(shí)器,最后執(zhí)行,涉及到的知識(shí)點(diǎn)是事件循環(huán)和事件隊(duì)列)

test14();
function test14() {
  function foo() {
    console.log('I am foo');
  }
  console.log('正常執(zhí)行');
  setTimeout((function(){
    console.log('定時(shí)器大灰狼來(lái)啦');
  }),0);
  foo();
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“弱類(lèi)型語(yǔ)言javascript開(kāi)發(fā)中的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司,關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線(xiàn),公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、網(wǎng)站設(shè)計(jì)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。


網(wǎng)頁(yè)名稱(chēng):弱類(lèi)型語(yǔ)言javascript開(kāi)發(fā)中的示例分析-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://weahome.cn/article/dojshi.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部