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

資訊專欄INFORMATION COLUMN

y18學習筆記1

mingzhong / 2907人閱讀

摘要:趙錢孫李截取從第二位之后的三位趙錢孫李趙錢孫李趙錢孫李趙錢孫李內置對象返回指定字符串的位置沒找到沒找到字符串拼接一般用類的靜態方法不需要需要的是對象方法四舍五入瀏覽器對象的重要性不聲明污染全局

  // for 
  var arr = ["趙", "錢", "孫", "李"];
  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 = ["趙", "錢", "孫", "李"];
  console.log(arr.join());// 趙,錢,孫,李
  console.log(arr.join(""));// 趙錢孫李
  console.log(arr.join("-"));// 趙-錢-孫-李
  
  
  
  // js內置對象
  // str
  var str = "helloworld";
  console.log(str.indexOf("he"));// 0 返回指定字符串的位置
  console.log(str.indexOf("a"));// -1 沒找到
  console.log(str.length);// -1 沒找到
  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 類的靜態方法 不需要new 需要new的是對象方法
  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對象
  // 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();
 
 

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/91026.html

相關文章

  • react源碼解析004 - 關于類型檢查工具flow

    摘要:簡介是推出的類型檢查工具。使得咱們可以指定變量的類型,避免此類錯誤的發生。停用后臺進程,使用以上示例的源碼。配置文件這部分將結合的和官方文檔進行解析。一個文件簡稱,就類似于中的頭文件,是用來定義跨項目可用的全局變量。 Flow 簡介 flow是facebook推出的js類型檢查工具。js是一門弱類型語言,沒有從語言層面去保證變量類型不匹配的基本錯誤。flow使得咱們可以指定變量的類型,...

    huayeluoliuhen 評論0 收藏0
  • ApacheCN 人工智能知識樹 v1.0

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

    劉厚水 評論0 收藏0
  • 【LNMPR源碼學習筆記匯總

    摘要:此文用于匯總跟隨陳雷老師及團隊的視頻,學習源碼過程中的思考整理與心得體會,此文會不斷更新視頻傳送門每日學習記錄使用錄像設備記錄每天的學習源碼學習源碼學習內存管理筆記源碼學習內存管理筆記源碼學習內存管理筆記源碼學習基本變量筆記 此文用于匯總跟隨陳雷老師及團隊的視頻,學習源碼過程中的思考、整理與心得體會,此文會不斷更新 視頻傳送門:【每日學習記錄】使用錄像設備記錄每天的學習 PHP7...

    Barrior 評論0 收藏0

發表評論

0條評論

mingzhong

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<