您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript數組、字符串和數學函數實例分析的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇JavaScript數組、字符串和數學函數實例分析文章都會有所收獲,下面我們一起來看看吧。
push()方法添加一個或多個元素到數組的末尾,并返回數組新的長度(length屬性值)。
pop()方法刪除一個數組中的最后的一個元素,并且返回這個元素。
shift()方法刪除數組的第一個元素,并返回這個元素。該方法會改變數組的長度。
unshift()方法在數組的開頭添加一個或者多個元素,并返回數組新的length值。
join()方法將數組中的所有元素連接成一個字符串。
**split()**方法通過把字符串分割成子字符串來把一個String對象分割成一個字符串數組。
代碼題
數組
用splice實現push、pop、shift、unshift方法
定義和用法
splice()方法用于插入、刪除或替換數組的元素。
語法
arrayObject.splice(index,howmany,element1,.....,elementX)
參數描述
index必需。規定從何處添加/刪除元素。該參數是開始插入和(或)刪除的數組元素的下標,必須是數字。
howmany必需。規定應該刪除多少元素。必須是數字,但可以是"0"。如果未規定此參數,則刪除從index開始到原數組結尾的所有元素。element1可選。規定要添加到數組的新元素。從index所指的下標處開始插入。
elementX可選。可向數組添加若干元素。
返回值
如果從arrayObject中刪除了元素,則返回的是含有被刪除的元素的數組。
splice->push
vara=[1,2,3,4,5]
varb=[1,2,3,4,5]
console.log(a);
console.log(b);
a.push(6);
b.splice(5,1,6);
console.log(a);
console.log(b);
splice->pop
vara=[1,2,3,4,5]
varb=[1,2,3,4,5]
console.log(a);
console.log(b);
a.pop();
b.splice(4,1);
console.log(a);
console.log(b);
splice->shift
vara=[1,2,3,4,5]
varb=[1,2,3,4,5]
console.log(a);
console.log(b);
a.shift();
b.splice(0,1);
console.log(a);
console.log(b);
splice->unshift
vara=[1,2,3,4,5]
varb=[1,2,3,4,5]
console.log(a);
console.log(b);
a.unshift(-1);
b.splice(0,0,-1);
console.log(a);
console.log(b);
使用數組拼接出如下字符串
varprod={name:'女裝',styles:['短款','冬季','春裝']
};functiongetTpl(data){//todo...};varresult=getTplStr(prod);//result為下面的字符串
<dlclass="product">
<dt>女裝</dt>
<dd>短款</dd>
<dd>冬季</dd>
<dd>春裝</dd>
</dl>
代碼:
varprod={
name:'女裝',
styles:['短款','冬季','春裝']
};
functiongetTplStr(data){
varhtmls=[];
htmls.push('<dlclass="product">','<dt>'+data,name+'<dt>');
for(i=0;i<data.styles.length;i++){
htmls.push('<dd>'+data.styles[i]+'<dd>')
}
htmls.push('<dl>');
varhtmls=htmls.join('')
returnhtmls
};
varresult=getTplStr(prod);//result為下面的字符串
console.log(result)
寫一個find函數,實現下面的功能
vararr=["test",2,1.5,false]
find(arr,"test")//0
find(arr,2)//1
find(arr,0)//-1
代碼:
vararr=["test",2,1.5,false]
varfind=function(a,b){
console.log(a.indexOf(b))
}
find(arr,"test")//0
find(arr,2)//1
find(arr,0)//-1
寫一個函數filterNumeric,實現如下功能
arr=["a",1,3,5,"b",2];
newarr=filterNumeric(arr);//[1,3,5,2]
代碼:
方法一:
arr=["a",1,3,5,"b",2];
varfilterNumberic=function(data){
vara=[];
for(i=0;i<data.length;i++){
if(typeofdata[i]==='number'){
a.push(data[i]);
}
}
returna
}
newarr=filterNumberic(arr);//[1,3,5,2]
console.log(newarr)
方法二:
arr=["a",1,3,5,"b",2];
functionisNumber(element){
returntypeofelement==='number';
}
varnewarr=arr.filter(isNumber)
console.log(newarr)
對象obj有個className屬性,里面的值為的是空格分割的字符串(和html元素的class特性類似),寫addClass、removeClass函數,有如下功能:
varobj={className:'openmenu'}addClass(obj,'new')//obj.className='openmenunew'addClass(obj,'open')//因為open已經存在,此操作無任何辦法addClass(obj,'me')//obj.className='openmenunewme'console.log(obj.className)//"openmenunewme"
removeClass(obj,'open')//obj.className='menunewme'removeClass(obj,'blabla')//不變
代碼:
varobj={className:'openmenu'}varaddClass=function(a,b){varname=a.className.split("");if(name.indexOf(b)===-1){name.push(b);}else{console.log("因為"+b+"已經存在,此操作無任何辦法");}a.className=name.join("");console.log('obj.className='+a.className);}varremoveClass=function(a,b){varname=a.className.split("");if(name.indexOf(b)!==-1){name.splice(name.indexOf(b),1)a.className=name.join("");console.log('obj.className='+a.className)}else{console.log('不變')}}
addClass(obj,'new')//obj.className='openmenunew'addClass(obj,'open')//因為open已經存在,此操作無任何辦法addClass(obj,'me')//obj.className='openmenunewme'console.log(obj.className)//"openmenunewme"removeClass(obj,'open')//obj.className='menunewme'removeClass(obj,'blabla')//不變
寫一個camelize函數,把my-short-string形式的字符串轉化成myShortString形式的字符串,如:
camelize("background-color")=='backgroundColor'
camelize("list-style-image")=='listStyleImage'
代碼:
functioncamelize(string){
returnstring.replace(/-/g,'')
}
console.log(camelize("background-color"))
camelize("background-color")=='backgroundColor'
camelize("list-style-image")=='listStyleImage'
如下代碼輸出什么?為什么?
arr=["a","b"];
arr.push(function(){alert(console.log('hellohungervalley'))});
arrarr.length-1//?
因為arr.push(function(){alert(console.log('hellohungervalley'))});將function(){alert(console.log('hellohungervalley')push到arr[]最后一位,arr[arr.length-1]()取該數組最后一位,然后立即執行該函數,由于function(){alert(console.log('hellohungervalley')中console.log只允許在控制臺中打開,所以結果為undefined。
寫一個函數filterNumericInPlace,過濾數組中的數字,刪除非數字
arr=["a",1,3,4,5,"b",2];
//對原數組進行操作,不需要返回值
filterNumericInPlace(arr);
console.log(arr)//[1,3,4,5,2]
代碼:
arr=["a","d",1,3,4,5,"b",2];
//對原數組進行操作,不需要返回值
functionfilterNumericInPlace(data){
for(i=0;i<data.length;i++){
if(typeofdata[i]==='string'){
data.splice(i,1);
i--;//splice指針減少1,否則獲取不了數組中全部元素。
}
}
}
filterNumericInPlace(arr);
console.log(arr)//[1,3,4,5,2]
寫一個ageSort函數實現如下功能:
varjohn={name:"JohnSmith",age:23}
varmary={name:"MaryKey",age:18}
varbob={name:"Bob-small",age:6}
varpeople=[john,mary,bob]
ageSort(people)//[bob,mary,john]
代碼:
方法一:
functionageSort(arr){
arr.sort(function(a,b){returna.age-b.age})
returnarr
}
varjohn={name:"JohnSmith",age:23}
varmary={name:"MaryKey",age:18}
varbob={name:"Bob-small",age:6}
varpeople=[john,mary,bob]
ageSort(people)//[bob,mary,john]
console.log(ageSort(people))
方法二:
functionageSort(a){
for(i=0;i<a.length;i++){
for(j=i+1;j<a.length;j++){
if(a[i].age-a[j].age>0){
varb=a[i];
a[i]=a[j];
a[j]=b;
}
}
}
returna
}
varjohn={name:"JohnSmith",age:23}
varmary={name:"MaryKey",age:18}
varbob={name:"Bob-small",age:6}
varpeople=[john,mary,bob]
ageSort(people)//[bob,mary,john]
console.log(ageSort(people))
寫一個filter(arr,func)函數用于過濾數組,接受兩個參數,第一個是要處理的數組,第二個參數是回調函數(回調函數遍歷接受每一個數組元素,當函數返回true時保留該元素,否則刪除該元素)。實現如下功能:
functionisNumeric(el){returntypeofel==='number';}arr=["a",3,4,true,-1,2,"b"]
arr=filter(arr,isNumeric);//arr=[3,4,-1,2],過濾出數字arr=filter(arr,function(val){returnval>0});//arr=[2]過濾出大于0的整數
代碼:
functionfilter(data,callback){returndata.filter(callback)}
functionisNumeric(el){returntypeofel==='number';}arr=["a",3,4,true,-1,2,"b"]arr=filter(arr,isNumeric);//arr=[3,4,-1,2],過濾出數字console.log(arr)arr=filter(arr,function(val){returnval>0});//arr=[2]過濾出大于0的整數console.log(arr)
字符串
寫一個ucFirst函數,返回第一個字母為大寫的字符。
ucFirst("hunger")=="Hunger"
代碼:
functionucFirst(string){
returnstring[0].toUpperCase()+string.slice(1);
}
console.log(ucFirst("hunger"))
ucFirst("hunger")=="Hunger"
寫一個函數truncate(str,maxlength),如果str的長度大于maxlength,會把str截斷到maxlength長,并加上...,如:
truncate("hello,thisishungervalley,",10))=="hello,thi...";
truncate("helloworld",20))=="helloworld"
代碼:
functiontruncate(str,maxlength){
if(str.length>maxlength){
varsub=str.substring(maxlength)
str=str.replace(sub,'...');
}returnstr;
}
console.log(truncate("hello,thisishungervalley,",10));
truncate("hello,thisishungervalley,",10)=="hello,thi...";
truncate("helloworld",20)=="helloworld"
數學函數
寫一個函數limit2,保留數字小數點后兩位,四舍五入,如:
varnum1=3.456
limit2(num1);//3.46
limit2(2.42);//2.42
代碼:
varnum1=3.456
functionlimit2(data){
varnum=Math.round(data*100);
returnnum/100
}
limit2(num1);//3.46
limit2(2.42);//2.42
console.log(limit2(num1));
console.log(limit2(2.42));
console.log(limit2(-1.15555555))
寫一個函數,獲取從min到max之間的隨機數,包括min不包括max。
代碼:
functionfun(min,max){
returnmin+Math.random()*(max-min)
}
console.log(fun(5,10))
寫一個函數,獲取從min都max之間的隨機整數,包括min包括max。
代碼:
functionfun(min,max){
returnMath.Round(min+Math.random()*(max-min))
}
console.log(fun(5,10))
寫一個函數,獲取一個隨機數組,數組中元素為長度為len,最小值為min,最大值為max(包括)的隨機數.
代碼:
functionfun(min,max,leng){
vararr=[]
for(i=0;i<leng;i++){
varvalue=max-Math.random()*(max-min)
arr.push(value)
}
returnarr
}
console.log(fun(5,10,6))
關于“JavaScript數組、字符串和數學函數實例分析”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“JavaScript數組、字符串和數學函數實例分析”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。