2、n1;}if(valuel>value2){returnT;}else{return0;}}slice:slice(start,end);slice()方法返Ih
3、從參數(shù)指定位置開始到當前數(shù)組末尾的所有項。如果有兩個參數(shù),該方法返冋起死和結束位置之間的項,但不包括結束位置的項。1「〃」〃〃〃〃11〃〃—〃〃r〃1varcolors=Lred,green,blue,yellow,purple」;varcolors2二colors,slice(1);varcolors3二colors,siice(l,4);console.Iog(colors2);//grccn,blue,yellow
4、,purpleconsole.Iog(colors3);//green,blue,yellowsplice:splice()有刪除,插入,替換的功能刪除:需要兩個參數(shù),要刪除的第一項的位置和要刪除的項數(shù)。1「〃1〃〃〃〃11〃"1varcolors二Lred,green、blue」;varremoved二colors,splice(0,1);console,log(colors);//grcccn,blueconsole,log(removed);//red插入:需耍三個參數(shù):起始位置、0(耍刪除的項數(shù))和耍插入的項varcolors二Lred,grccn,blue」;varrem
5、oved=colors,splice(1,0,"yellow","orange");console,log(colors);//[〃red〃,"yellow",z/orange/z,〃green〃,〃blue〃]console,log(removed);//返冋空替換:需要三個參數(shù):起始位置、要刪除的項數(shù)和要插入的任意數(shù)量的項。varcolors二Lred,green,blue」;varremoved二colors,splice(l,1,"yellow","orange");console?log(colors);//["red","yellow",,zorange","blue"
6、]consolc.1og(removed);//["grccrT]Date類型RegExp類型varpatternl二/[bc]/i;varpattern2=newRegExp("[be]at","i〃);patternl和pattern2是兩個完全等價的正則表達式。要注意的是,傳遞給RegExp構造函數(shù)的兩個參數(shù)都是字符串(不能把正則表達式字面量傳遞給RegExp構造函數(shù))。由于RegExp構造函數(shù)的模式參數(shù)是字符串,所以在某些情況下要對字符串進行雙重轉義。varpatternl=/[bc]/i;varpattern2=newRegExp(/z\[bc\]at?/,"i〃);
7、RegExp實例方法execexec接收一個參數(shù),即要應用模式的字符串,然后返回包含第一個匹配信息的數(shù)組。vartext二〃cat,bat,sat,fat〃;varpatternl二/.at/;varmatches=patternl.exec(text);console,log(matches);//matchmatch是字符串執(zhí)行匹配正則表達式規(guī)則的方法,他的參數(shù)是正則表達vartext="cat,bat,sat,fat";varpatternl=/.at/;varmatches2=text.m3tch(p3tternl);console.Iog(matchcs2);//[/,c
8、at/,]testtestO接收一個字符串參數(shù)vartext二"000一00-0000〃;varpattern=/d{3}-d{2}-d{4}/;if(pattern.test(text)){console.log(z/Thepatternwasmatched");//ThepatternwasmatchedFunction類型函數(shù)內(nèi)部屬性把arguments轉為數(shù)組(function(){varslice=Array,prototype,slice,aArgu