摘要:趙錢孫李截取從第二位之后的三位趙錢孫李趙錢孫李趙錢孫李趙錢孫李內置對象返回指定字符串的位置沒找到沒找到字符串拼接一般用類的靜態方法不需要需要的是對象方法四舍五入瀏覽器對象的重要性不聲明污染全局
// 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
摘要:簡介是推出的類型檢查工具。使得咱們可以指定變量的類型,避免此類錯誤的發生。停用后臺進程,使用以上示例的源碼。配置文件這部分將結合的和官方文檔進行解析。一個文件簡稱,就類似于中的頭文件,是用來定義跨項目可用的全局變量。 Flow 簡介 flow是facebook推出的js類型檢查工具。js是一門弱類型語言,沒有從語言層面去保證變量類型不匹配的基本錯誤。flow使得咱們可以指定變量的類型,...
摘要:貢獻者飛龍版本最近總是有人問我,把這些資料看完一遍要用多長時間,如果你一本書一本書看的話,的確要用很長時間。為了方便大家,我就把每本書的章節拆開,再按照知識點合并,手動整理了這個知識樹。 Special Sponsors showImg(https://segmentfault.com/img/remote/1460000018907426?w=1760&h=200); 貢獻者:飛龍版...
摘要:此文用于匯總跟隨陳雷老師及團隊的視頻,學習源碼過程中的思考整理與心得體會,此文會不斷更新視頻傳送門每日學習記錄使用錄像設備記錄每天的學習源碼學習源碼學習內存管理筆記源碼學習內存管理筆記源碼學習內存管理筆記源碼學習基本變量筆記 此文用于匯總跟隨陳雷老師及團隊的視頻,學習源碼過程中的思考、整理與心得體會,此文會不斷更新 視頻傳送門:【每日學習記錄】使用錄像設備記錄每天的學習 PHP7...
閱讀 1572·2021-10-14 09:42
閱讀 3815·2021-09-07 09:59
閱讀 1292·2019-08-30 15:55
閱讀 572·2019-08-30 11:17
閱讀 3337·2019-08-29 16:06
閱讀 500·2019-08-29 14:06
閱讀 3123·2019-08-28 18:14
閱讀 3642·2019-08-26 13:55