摘要:類型類型重排序方法升序降序方法返回從參數指定位置開始到當前數組末尾的所有項。要注意的是,傳遞給構造函數的兩個參數都是字符串不能把正則表達式字面量傳遞給構造函數。由于構造函數的模式參數是字符串,所以在某些情況下要對字符串進行雙重轉義。
Object類型 Array類型 重排序方法: compare
升序:
function compare(value1, value2){ if (value1value2){ return 1; } else{ return 0; } }
var values = [0,1,5,10,15]; values.sort(compare); console.log(values); // [0,1,5,10,15]
降序:
function compare(value1, value2){ if (value1slicevalue2){ return -1; } else{ return 0; } }
slice(start, end); slice()方法返回從參數指定位置開始到當前數組末尾的所有項。如果有兩個參數,該方法返回起死和結束位置之間的項,但不包括結束位置的項。
var colors = ["red", "green", "blue", "yellow", "purple"]; var colors2 = colors.slice(1); var colors3 = colors.slice(1,4); console.log(colors2); // green, blue, yellow, purple console.log(colors3); // green, blue, yellowsplice
splice()有刪除,插入,替換的功能
刪除
需要兩個參數,要刪除的第一項的位置和要刪除的項數。
var colors = ["red", "green", "blue"]; var removed = colors.splice(0,1); console.log(colors); // greeen, blue console.log(removed); // red
插入
需要三個參數:起始位置、0(要刪除的項數)和要插入的項
var colors = ["red", "green", "blue"]; var removed = colors.splice(1,0,"yellow", "orange"); console.log(colors); // ["red", "yellow", "orange", "green", "blue"] console.log(removed); // 返回空
替換
需要三個參數:起始位置、要刪除的項數和要插入的任意數量的項。
var colors = ["red", "green", "blue"]; var removed = colors.splice(1,1,"yellow", "orange"); console.log(colors); // ["red", "yellow", "orange", "blue"] console.log(removed); // ["green"]Date類型 RegExp類型
var pattern1 = /[bc]/i; var pattern2 = new RegExp("[bc]at", "i");
pattern1和pattern2是兩個完全等價的正則表達式。要注意的是,傳遞給RegExp構造函數的兩個參數都是字符串(不能把正則表達式字面量傳遞給RegExp構造函數)。由于RegExp構造函數的模式參數是字符串,所以在某些情況下要對字符串進行雙重轉義。
var pattern1 = /[bc]/i; var pattern2 = new RegExp("[bc]at", "i");RegExp實例方法
exec
exec接收一個參數,即要應用模式的字符串,然后返回包含第一個匹配信息的數組。
var text = "cat, bat, sat, fat"; var pattern1 = /.at/; var matches = pattern1.exec(text); console.log(matches); // ["cat"]
match
match是字符串執行匹配正則表達式規則的方法,他的參數是正則表達
var text = "cat, bat, sat, fat"; var pattern1 = /.at/; var matches2 = text.match(pattern1); console.log(matches2); // ["cat"]
test
test()接收一個字符串參數
var text = "000-00-0000"; var pattern = /d{3}-d{2}-d{4}/; if (pattern.test(text)){ console.log("The pattern was matched"); // The pattern was matched }Function類型 函數內部屬性
把arguments轉為數組
(function() { var slice = Array.prototype.slice, aArguments = slice.apply(arguments); console.log(aArguments); })(10, 20, 30);
arguments.callee
該屬性是一個指針,指向擁有這個arguments對象的函數。當函數在嚴格模式下運行時,訪問arguments.callee會導致錯誤。
函數屬性和方法length
length屬性表示函數希望接收的命名參數的個數。
function sayName(name){ alert(name); } function sum(num1,num2){ return num1 + num2; } function sayHi(){ alert("hi"); } console.log(sayName.length); //1 console.log(sum.length); //2 console.log(sayHi.length); //0
prototype
call, apply
function sum(num1, num2){ return num1 + num2; } function callSum1(num1,num2){ return sum.apply(this,arguments); } function callSum2(num1, num2){ return sum.apply(this, [num1, num2]); } console.log(callSum1(10,10)); // 20 console.log(callSum2(10,10)); //20
window.color = "red"; var o = {color:"blue"}; function sayColor(){ console.log(this.color); } sayColor(); // red sayColor.call(this); // red sayColor.call(window); // red sayColor.call(o); // blue基本包裝類型
var value = "25"; var number = Number(value); console.log(typeof number); console.log(number instanceof Number);// false var obj = new Number(value); console.log(typeof obj); console.log(obj instanceof Number);// trueBoolean類型
var falseObject = new Boolean(false); var result = falseObject && true; // true //布爾表達式中的所有對象都會被轉換為true, 因此falseObject對象在布爾表達式中代表的是true console.log(result); // true var falseValue = false; result = falseValue && true; console.log(result); //false console.log(typeof falseObject); //object console.log(typeof falseValue); // Boolean console.log(falseObject instanceof Boolean); //true console.log(falseValue instanceof Boolean); // falseNumber類型
var numberObject = new Number(10); var numberValue = 10; console.log(typeof numberObject); // Object console.log(typoef numberValue); // number console.log(numberObject instanceof Number); // true console.log(numberValue instanceof Number); // falseString類型 字符方法
charAt() charCodeAt()
charAt()方法以單字符字符串的形式返回給定位置的那個字符串。
charCodeAt()返回的是字符編碼。
var stringValue = "hello world"; console.log(stringValue.charAt(1)); // e console.log(stringValue.charCodeAt(1)); // 101字符串操作方法
concat()
concat()用于將一或多個字符串拼接起來。
var stringValue = "hello "; var result = stringValue.concat("world"); console.log(result); // hello world console.log(stringValue); // hello
slice(start, end)
end 表示字符串到哪里結束。
如果傳入的是負數,slice()方法會將傳入的負值與字符串長度相加。
var str="Hello happy world!"; console.log(str.slice(6)); // happy world! console.log(str.slice(6,11));// happy console.log(str.slice(-3)); // ld! console.log(str.slice(3, -4)); //lo happy wo
substring(start, end)
如果傳入的是負數, substring()會把所有字符參數都轉換為0
var str="Hello happy world!"; console.log(str.substring(6)); // happy world! console.log(str.substring(6,11));// happy console.log(str.substring(-3)); // Hello happy world! console.log(str.substring(3, -4)); //Hel
substr(start, length)
如果傳入的是負數,substr()方法將負的第一個參數加上字符串的長度,而將負的第二個參數轉換為0
var str="Hello world!"; console.log(str.substr(3)); //lo world! console.log(str.substr(3, 7)); //lo worl console.log(str.substr(-3)); // ld! console.log(str.substr(3, -3)); // 空字符串字符串位置方法
indexOf() lastIndexOf()
var stringValue = "hello world"; console.log(stringValue.indexOf("o")); // 4 console.log(stringValue.lastIndexOf("o")); //7
這兩個方法都可以接收可選的第二個參數,表示從字符串中的哪個位置開始搜索。
var stringValue = "hello world"; console.log(stringValue.indexOf("o", 6)); // 7 console.log(stringValue.lastIndexOf("o", 6)); //4字符串的模式匹配方法
match()
var text = "cat, bat, sat, fat"; var pattern = /.at/; var matches = text.match(pattern); console.log(matches.index); //0 console.log(matches[0]); // cat console.log(pattern.lastIndex); //0
search()
var text = "cat, bat, sat, fat"; var pos = text.search(/at/); console.log(pos); // 1
replace()
var text = "cat, bat, sat, fat"; var result = text.replace("at", "ond"); console.log(result); // cond, bat, sat, fat var result = text.replace(/at/g, "ond"); console.log(result); // cond, bond, sond, fondGlobal對象
URI編碼方法
Global對象的encodeURI()和encodeURIComponent()方法可以對URI(Uniform Resources Identifiers,通用資源標識符)進行編碼,以便發送給瀏覽器。
var url = "http://www.baidu.com/"; console.log(encodeURI(url)); console.log(encodeURIComponent(url));
encodeURI()和encodeURIComponent()方法對象的兩個方法分別是decodeURI()和decodeURIComponent()
Math對象random()方法
Math.random()方法返回介于0和1之間一個隨機數,不包含0和1。對于某些站點來說,這個方法非常實用,因為可以利用它來隨機顯示一些名言和新聞事件。套用下面的公式,就可以利用Math.random()從某個整數范圍內隨機選擇一個值。
值=Math.floor(Math.random()*可能值的總數+第一個可能的值)
例如:如果想選擇一個1到10之間的數值,可以像下面這邊編寫代碼:
var num = Math.floor(Math.random()*10+1);
function selectFrom(lowerValue,upperValue){ var choice = upperValue - lowerValue + 1; return Math.floor(Math.random()*choice+lowerValue); }
var num = selectFrom(2,10); console.log(num);
var colors = ["red", "green", "blue", "yellow", "black", "purple", "brown"]; var color = colors[selectFrom(0, colors.length-1)]; console.log(color);
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/87446.html
摘要:局部變量只在函數執行過程中存在。此時,局部變量就沒有存在的必要了,因此可以釋放他們所占的內存以供他們使用。這一做法適合于大多數全局變量和局部變量的屬性。 基本類型和引用類型的值 動態的屬性 var person = new Object(); person.name = Nicholas; alert(person.name); // Nicholas var name = N...
摘要:構造函數里的作用在的時候,所謂的作用域賦給新對象,就是使用了方法。如果我們不用,也可以實現指向我們想指向的對象構造函數當做普通函數使用,構造函數當做普通函數使用,這些變式其實都是在充分了解和的用法后,自然寫出來的。 這一期所書寫的目的并不是為了介紹創建對象的方法,在紅皮書里面,例子其實很清楚。在這篇文章中,想討論一下書中細節,并沒有解釋太清楚的地方。 工廠模式 //工廠模式書本「 fu...
摘要:理解白皮書第部分原文鏈接哦不,白皮書加密貨幣區塊鏈世界喜愛白皮書,也不例外。要理解的工作原理,最好一步一步地學習白皮書。從開始,白皮書中明確提到了三個實現。白皮書指出小值等于或小于直接存儲在上。 理解 IPFS 白皮書 第 1 部分 原文鏈接:https://decentralized.blog/un... 哦不,白皮書! 加密貨幣 / 區塊鏈世界喜愛白皮書,IPFS 也不例外。 它起...
摘要:取得所有類中包含和的元素。類名的先后順序無所謂取得為的元素中帶有類名的所有元素焦點管理也添加了輔助管理焦點的功能。首先就是屬性,這個屬性始終會引用中當前獲得了焦點的元素。另外就是新增了方法,這個方法用于確定文檔是否獲得了焦點。 選擇符API querySelector()方法 // 取得body元素 var tbody = document.querySelector(body);...
摘要:設計模式是以面向對象編程為基礎的,的面向對象編程和傳統的的面向對象編程有些差別,這讓我一開始接觸的時候感到十分痛苦,但是這只能靠自己慢慢積累慢慢思考。想繼續了解設計模式必須要先搞懂面向對象編程,否則只會讓你自己更痛苦。 JavaScript 中的構造函數 學習總結。知識只有分享才有存在的意義。 是時候替換你的 for 循環大法了~ 《小分享》JavaScript中數組的那些迭代方法~ ...
閱讀 3227·2021-11-23 10:09
閱讀 2063·2021-10-26 09:51
閱讀 979·2021-10-09 09:44
閱讀 3906·2021-10-08 10:04
閱讀 2745·2021-09-22 15:14
閱讀 3624·2021-09-22 15:02
閱讀 1056·2021-08-24 10:03
閱讀 1727·2019-12-27 12:14