国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專(zhuān)欄INFORMATION COLUMN

y18學(xué)習(xí)筆記1

mingzhong / 2911人閱讀

摘要:趙錢(qián)孫李截取從第二位之后的三位趙錢(qián)孫李趙錢(qián)孫李趙錢(qián)孫李趙錢(qián)孫李內(nèi)置對(duì)象返回指定字符串的位置沒(méi)找到?jīng)]找到字符串拼接一般用類(lèi)的靜態(tài)方法不需要需要的是對(duì)象方法四舍五入瀏覽器對(duì)象的重要性不聲明污染全局

  // for 
  var arr = ["趙", "錢(qián)", "孫", "李"];
  for (var i = 0; i < arr.length; i++) {
    console.log(arr[i]);
  }
  var obj = { name: "list", age: 26, area: "bj" };
  for (var j in obj) {
    console.log(j + " ~ " + obj[j]);
  }
  
  
  // obj 
  var str = "hello world";
  console.log(str);// hello world
  console.log(str.length);// 11
  console.log(str.substr(2, 3));// llo截取從第二位之后的三位
  console.log(str.split());// ["hello world"]
  console.log(str.split(""));// ["h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d"]
  console.log(str.split(" "));// ["hello", "world"]
  var arr = ["趙", "錢(qián)", "孫", "李"];
  console.log(arr.join());// 趙,錢(qián),孫,李
  console.log(arr.join(""));// 趙錢(qián)孫李
  console.log(arr.join("-"));// 趙-錢(qián)-孫-李
  
  
  
  // js內(nèi)置對(duì)象
  // str
  var str = "helloworld";
  console.log(str.indexOf("he"));// 0 返回指定字符串的位置
  console.log(str.indexOf("a"));// -1 沒(méi)找到
  console.log(str.length);// -1 沒(méi)找到
  console.log(str.concat("!"));// 字符串拼接
  console.log(str.replace("ll", "LL"));// heLLoworld
  console.log(str.toUpperCase());//   HELLOWORLD
  console.log(str.toUpperCase().toLowerCase());// helloworld
  // Date
  var dt = new Date();
  console.log(dt.getYear());// 一般用getFullYear
  console.log(dt.getFullYear()); // xxxx
  console.log(dt.getMonth());// 0-11
  console.log(dt.getDate());// 1-31 the day of the month
  console.log(dt.getDay());// 0-6 the day of the week
  console.log(dt.getHours());// 0-23
  console.log(dt.getMinutes());// 0-59
  console.log(dt.getSeconds());// 0-59
  console.log(dt.getMilliseconds());// 0-999
  // Math 類(lèi)的靜態(tài)方法 不需要new 需要new的是對(duì)象方法
  console.log(Math.random());// [0, 1)
  console.log(Math.random() * 5 + 5);// [5, 10)
  console.log(Math.ceil("2.6"));// 3
  console.log(Math.floor("2.6"));// 2 
  console.log(Math.round("2.6"));// 3 四舍五入
  console.log(Math.sqrt(3 * 3));// 3
  console.log(Math.min(1, 2));// 1
  console.log(Math.max(1, 2));// 2
  console.log(Math.pow(7, 2));// 7*7
  // arr 
  var arr = [];
  conlsole.log(arr.length);// 
  conlsole.log(arr.concat());// 
  conlsole.log(arr.join());// 
  conlsole.log(arr.pop());// 
  conlsole.log(arr.push());// 
  conlsole.log(arr.shift());// 
  conlsole.log(arr.unshift());// 
  conlsole.log(arr.sort());// 
  conlsole.log(arr.reverse());// 
  conlsole.log(arr.slice);// charu
  conlsole.log(arr.splice());// del
  
  
  
  // 瀏覽器window對(duì)象
  // window.alert();
  // window.confirm();
  console.log(window.navigator);
  console.log(window.navigator.cookieEnabled);
  console.log(window.location);
  console.log(window.location.search);// ?id=2
  console.log(window.history);
  // console.log(window.history.forward());
  // console.log(window.history.go());
  console.log(window.screen);
  console.log(window.screen.width);
  console.log(window.screen.availHeight);
  console.log(window.document);
  
  
  
  
  // var的重要性 不聲明污染全局union
  window.str = "union";
  function t1() {
    var str = "china";
    function t2() {
      var str = "japan";
      // alert(str);
    }
    t2();
  }
  t1();
 
 

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/91026.html

相關(guān)文章

  • react源碼解析004 - 關(guān)于類(lèi)型檢查工具flow

    摘要:簡(jiǎn)介是推出的類(lèi)型檢查工具。使得咱們可以指定變量的類(lèi)型,避免此類(lèi)錯(cuò)誤的發(fā)生。停用后臺(tái)進(jìn)程,使用以上示例的源碼。配置文件這部分將結(jié)合的和官方文檔進(jìn)行解析。一個(gè)文件簡(jiǎn)稱(chēng),就類(lèi)似于中的頭文件,是用來(lái)定義跨項(xiàng)目可用的全局變量。 Flow 簡(jiǎn)介 flow是facebook推出的js類(lèi)型檢查工具。js是一門(mén)弱類(lèi)型語(yǔ)言,沒(méi)有從語(yǔ)言層面去保證變量類(lèi)型不匹配的基本錯(cuò)誤。flow使得咱們可以指定變量的類(lèi)型,...

    huayeluoliuhen 評(píng)論0 收藏0
  • ApacheCN 人工智能知識(shí)樹(shù) v1.0

    摘要:貢獻(xiàn)者飛龍版本最近總是有人問(wèn)我,把這些資料看完一遍要用多長(zhǎng)時(shí)間,如果你一本書(shū)一本書(shū)看的話,的確要用很長(zhǎng)時(shí)間。為了方便大家,我就把每本書(shū)的章節(jié)拆開(kāi),再按照知識(shí)點(diǎn)合并,手動(dòng)整理了這個(gè)知識(shí)樹(shù)。 Special Sponsors showImg(https://segmentfault.com/img/remote/1460000018907426?w=1760&h=200); 貢獻(xiàn)者:飛龍版...

    劉厚水 評(píng)論0 收藏0
  • 【LNMPR源碼學(xué)習(xí)筆記匯總

    摘要:此文用于匯總跟隨陳雷老師及團(tuán)隊(duì)的視頻,學(xué)習(xí)源碼過(guò)程中的思考整理與心得體會(huì),此文會(huì)不斷更新視頻傳送門(mén)每日學(xué)習(xí)記錄使用錄像設(shè)備記錄每天的學(xué)習(xí)源碼學(xué)習(xí)源碼學(xué)習(xí)內(nèi)存管理筆記源碼學(xué)習(xí)內(nèi)存管理筆記源碼學(xué)習(xí)內(nèi)存管理筆記源碼學(xué)習(xí)基本變量筆記 此文用于匯總跟隨陳雷老師及團(tuán)隊(duì)的視頻,學(xué)習(xí)源碼過(guò)程中的思考、整理與心得體會(huì),此文會(huì)不斷更新 視頻傳送門(mén):【每日學(xué)習(xí)記錄】使用錄像設(shè)備記錄每天的學(xué)習(xí) PHP7...

    Barrior 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<