摘要:趙錢(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
摘要:簡(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)型,...
摘要:貢獻(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)者:飛龍版...
摘要:此文用于匯總跟隨陳雷老師及團(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...
閱讀 1580·2021-10-14 09:42
閱讀 3823·2021-09-07 09:59
閱讀 1304·2019-08-30 15:55
閱讀 578·2019-08-30 11:17
閱讀 3343·2019-08-29 16:06
閱讀 509·2019-08-29 14:06
閱讀 3132·2019-08-28 18:14
閱讀 3653·2019-08-26 13:55