js(3)——行列の方法——関数——構成を解く値
5663 ワード
《JavaScript 》 2 ———— ———— 2018-04-23
目次1 // splice( , — )
2 var a=[1,2,3,4,5,6,7,8];
3 a.splice(4); // [5,6,7,8],a [1,2,3,4]
4 a.splice(1,2); // [2,3],a [1,4]
5
6 // splice() ,
7 var b=[1,2,3,4,5];
8 b.splice(2,0,'a','b'); // [],b [1,2,'a','b',3,4,5]
9 b.splice(2,2,[1,2],3); // ['a','b'],b [1,2,[1,2],3,3,4,5]
1 // forEach()、map()、filter()、every()、some()、reduce()、reduceRight()、indexOf()、lastIndexOf()
2
3 // forEach() ,
4 // map() , ,
5 a=[1,2,3];
6 b=a.map(function(x){
return x*x;}); //b [1,4,9]
7 // filter()
8 a=[5,4,3,2,1];
9 small=a.filter(function(x){
return x<3;}); //[2,1]
10 // every()、some() : , true false。
11 a=[1,2,3,4,5];
12 a.every(function(x){
return x<10;}) ;//true:every “ ”
13 a.some(function(x){
return x%2===0;}) //true:some “ ”, a
14 // reduce()、reduceRight() , (reduceRight )
15 var a=[1,2,3,4,5];
16 var sum=a.reduce(function(x,y){
return x+y;},0); //15, ,reduce( , — — )
17 // indexOf()、lastIndexOf()
属性:length、prototype
方法:
3.クラスとモジュール
4.
<h 2><span style=“色:菗0000 ff”>5.解凍賦課値(/span)
<ul>
<ブロック>
let[x,y]=[1,2] //let x=1,y=2に等しい.p>
[x,y]=[y,x]///二つの変数の値を交換します.
<ul>
参考文章:
本文は自分の知識点を検索して整理します.権利侵害の伝言があれば、この文章を削除してもいいです.ありがとうございます(* ̄)
転載先:https://www.cnblogs.com/cjuan/p/8920820.html