您好,登錄后才能下訂單哦!
?
?
目錄
語法:... 1
函數(shù):... 1
函數(shù)參數(shù):... 2
函數(shù)參數(shù)-普通參數(shù):... 2
函數(shù)參數(shù)-可變參數(shù),rest parameters剩余參數(shù):... 3
arguments對(duì)象:... 3
參數(shù)解構(gòu):... 5
函數(shù)返回值:... 5
作用域:... 7
函數(shù)表達(dá)式:... 9
函數(shù)、匿名函數(shù)、函數(shù)表達(dá)式的差異:... 10
高階函數(shù):... 11
箭頭函數(shù):... 13
?
?
?
?
?
function 函數(shù)名(參數(shù)列表) {
???????? 函數(shù)體;
???????? return 返回值;
}
?
例:
function add(x,y) {?? //沒有邏輯
??? return x+y;
}
console.log(add(4,5));?? //函數(shù)調(diào)用
?
?
一個(gè)參數(shù)占一個(gè)位置,支持默認(rèn)參數(shù);
js中沒有py中的關(guān)鍵字傳參,即缺省值不用像py那樣往后放,建議默認(rèn)參數(shù)寫到后面;
js中只是作位置參數(shù)的對(duì)應(yīng);
js不限制位置參數(shù)的位置;
?
注:C、C++、java都是這樣;
?
例:
const add = (x,y) => x+y;
const add1 = (x,y=6) => x+y;
const add2 = (x=8,y) => x+y;?? //js中缺省值不用像py那樣往后放(js中沒有py中的關(guān)鍵字傳參),建議像py那樣默認(rèn)參數(shù)寫到后面;js只是作位置參數(shù)的對(duì)應(yīng);js不限制默認(rèn)參數(shù)的位置;
console.log(add(4,5));
console.log(add(y=3,x=2));
console.log(add(aaa=1,bbb=2));?? //V,相當(dāng)于add(1,2),js中沒有關(guān)鍵字傳參,但是它的賦值表達(dá)式有值,aaa=1就是1
console.log(add());?? //NaN,相當(dāng)于add(undefined,undefined)
console.log(add1(4));?? //相當(dāng)于add(4,undefined)
console.log(add1(y=5,x=6));
console.log(add1());?? //NaN,相當(dāng)于add(undefined,6)
console.log(add2(2,2));
?
console.log(add(a1=5,(a2=6,a3=5)));?? //括號(hào)中表達(dá)式值為5
輸出:
9
5
3
NaN
10
11
NaN
4
10
?
?
?
用...表示可變參數(shù),py中用*收集多個(gè)參數(shù);
?
例:
const add = function (...args) {
??? result = 0;
??? for (let i in args) {
??????? result += args[i];
??? }
??? return result;
}
?
const sum = (...args) => args;
?
console.log(add(3,6,9));
console.log(sum(2,4,6));
?
let arr = [1,2,3,4,5];
console.log(add(arr));?? //X,這樣返回的是字符串
console.log(typeof(add(arr)));
console.log(add(...arr));?? //V,將arr解構(gòu)
?
輸出:
18
[ 2, 4, 6 ]
01,2,3,4,5
string
15
?
?
?
函數(shù)的所有參數(shù)會(huì)被保存在arguments的鍵值對(duì)字典對(duì)象中,py中的dict對(duì)應(yīng)js中的對(duì)象;
ES6之前,arguments是唯一可變參數(shù)的實(shí)現(xiàn);
ES6開始,不推薦,建議使用可變參數(shù),arguements只是為兼容而保留;
?
例:
(function (p1, ...args) {?? //簡(jiǎn)寫,函數(shù)定義+調(diào)用
??? console.log(p1);
??? console.log(args);
??? console.log(arguments);
??? for (let i of arguments)
??????? console.log(i);
}) ('abc',1,3,5)
輸出:
abc
[ 1, 3, 5 ]
{ '0': 'abc', '1': 1, '2': 3, '3': 5 }
abc
1
3
5
?
?
例:
((x,...args) => {?? //簡(jiǎn)寫,函數(shù)定義+調(diào)用
??? console.log(args);
??? console.log(x);
??? console.log(arguments);
}) (...[2,4,6,8,10])
輸出:
[ 4, 6, 8, 10 ]
2
{ '0': {},
? '1':
?? { [Function: require]
???? resolve: { [Function: resolve] paths: [Function: paths] },
???? main:
????? Module {
??????? id: '.',
??????? exports: {},
??????? parent: null,
??????? filename: 'e:\\git_practice\\js\\node_833b816d371f0.tmp',
??????? loaded: false,
??????? children: [],
??????? paths: [Array] },
???? extensions: { '.js': [Function], '.json': [Function], '.node': [Function] },
???? cache: { 'e:\git_practice\js\node_833b816d371f0.tmp': [Object] } },
? '2':
?? Module {
???? id: '.',
???? exports: {},
???? parent: null,
???? filename: 'e:\\git_practice\\js\\node_833b816d371f0.tmp',
???? loaded: false,
???? children: [],
???? paths:
????? [ 'e:\\git_practice\\js\\node_modules',
??????? 'e:\\git_practice\\node_modules',
??????? 'e:\\node_modules' ] },
? '3': 'e:\\git_practice\\js\\node_833b816d371f0.tmp',
? '4': 'e:\\git_practice\\js' }
?
?
?
和py類似,使用...來解構(gòu);
另,js的參數(shù)解構(gòu),不需要解構(gòu)后的值的個(gè)數(shù)和參數(shù)個(gè)數(shù)對(duì)應(yīng);
?
例:
const add = (x,y) => {console.log(x,y); return x+y};
?
console.log(add(...[1,2]));
console.log(add(...[1,2,3,4,5]));
console.log(add(...[100]));
輸出:
1 2
3
1 2
3
100 undefined
NaN
?
?
?
類C的語言,都有一個(gè)概念——表達(dá)式的值,類C語言都支持逗號(hào)表達(dá)式的值;
賦值表達(dá)式的值,是等號(hào)右邊的值;
逗號(hào)表達(dá)式的值,是最后一個(gè)表達(dá)式的值;
js的函數(shù)返回值即使寫的是多個(gè),實(shí)際依然是單值;
另,py中,return 1,2,實(shí)質(zhì)是返回一個(gè)tuple;
高級(jí)語言,基本都是多個(gè)入一個(gè)出;
?
例:
const add = (x,y) => {return x,y};
console.log(add(4,100));
輸出:
100
?
例:
const add = (x,y) => {return x,y};
?
res = add(4.0,50);
console.log(res,typeof(res));
?
b = (x=5,y=6,true);
console.log(b);
?
a = (123,true,z='test');
console.log(a);
?
function c() {
??? return x=5,y=6,true,'ok'
}
console.log(c());
輸出:
50 'number'
true
test
ok
?
?
例:
function a(obj) {?? //實(shí)際應(yīng)用中,用來解決傳參問題
??? obj.x = 5;
??? return obj;
}
?
var o = {
??? x:100
}
?
console.log(a(o));
console.log(a(o).x);
輸出:
{ x: 5 }
5
?
?
?
?
函數(shù)內(nèi)定義的變量在函數(shù)外不可見;
var b = 200;,可提升聲明,也可突破非函數(shù)的塊作用域;
a = 100;,隱式聲明不能提升聲明,在嚴(yán)格模式下會(huì)報(bào)錯(cuò),但可把變量隱式聲明為全局變量,建議少用;
let c = 300;,不能提升聲明,且不能突破任何塊作用域,推薦使用;
?
例,函數(shù)中變量的作用域:
function test() {
??? a = 100;
??? var b = 200;
??? let c = 300;
}
?
// console.log(a);
// console.log(b);
// console.log(c);?? //a,b,c均不可見
test();
console.log(a);?? //函數(shù)在調(diào)用后才會(huì)把a放到全局中
?
例,塊作用域中變量的作用域:
"use strict";?? //嚴(yán)格模式,此模式開啟后,a = 100;不被允許;此句要么在文件首行,要么在函數(shù)首行
?
if (1) {
??? // a = 100;?? //X
??? var b = 200;
??? let c = 300;
}
?
// console.log(a);
console.log(b);
// console.log(c);?? //不可見
?
例:
function show(i,arg) {
??? console.log(i,arg);
}
?
x = 500;
?
function fn() {
??? let z = 400;
??? {
??????? var o = 100;
??????? show(1,x);
??????? t = 'free';?? //嚴(yán)格模式下會(huì)報(bào)錯(cuò)
??????? let p = 200;
??? }
??? var y = 300;
??? show(2,z);
??? show(3,x);
??? show(4,o);
??? show(5,t);
??? // show(6,p);?? //let不能突破塊作用域
??? {
??????? show(7,y);
??????? show(8,o);
??????? show(9,t);
??????? {
??????????? show(10,o);
??????????? show(11,t);
??????????? show(12,z);
??????? }
??? }
}
?
fn();
// show(13,y);
show(14,t);?? //global,不要這樣用
// show(15,o)?? //y,o函數(shù)外不可見
show(16,z);?? //var聲明提升,此時(shí)還沒有賦值
var z = 10;
?
const m = 2;
// m = 3;?? //常量不可以重新賦值
輸出:
1 500
2 400
3 500
4 100
5 'free'
7 300
8 100
9 'free'
10 100
11 'free'
12 400
14 'free'
16 undefined
?
?
?
?
使用表達(dá)式來定義函數(shù),表達(dá)式中的函數(shù)可以省略,如果這個(gè)函數(shù)名不省略,也只能用在此函數(shù)內(nèi)部;
?
例,有名字的函數(shù)表達(dá)式:
const add = function _add(x,y) {?? //定義函數(shù)和常量時(shí)常用const,之后不可改;_add只能用在該函數(shù)內(nèi)部
??? console.log(_add);
??? console.log(add);
??? return x+y;
};?? //表達(dá)式后要有分號(hào)
?
console.log(add(4,5));
// console.log(_add(4,5));?? //X
輸出:
[Function: _add]
[Function: _add]
9
?
?
例,有名字的函數(shù)表達(dá)式:
const add = function fn(x,y) {?? //fn只能用在該函數(shù)內(nèi)部
??? return x-y;
};
?
console.log(add(4,5));
// console.log(fn(4,5));?? //X
?
?
例,匿名函數(shù):
const add = function(x,y) {
??? console.log(add);
??? return x+y;
};
?
console.log(add(4,5));
?
例,遞歸:
const sum = function _sum(n) {
??? let result = 0;
??? if (n==1) return 1;
??? return result += n + _sum(--n);
};
console.log(sum(5));
輸出:
15
?
?
?
函數(shù) VS 匿名函數(shù),本質(zhì)上都一樣,都是函數(shù)對(duì)象(變量指向一個(gè)函數(shù)對(duì)象),只不過函數(shù)有自己的標(biāo)識(shí)符——函數(shù)名,匿名函數(shù)需要借助其它的標(biāo)識(shí)符而已;
(函數(shù)、匿名函數(shù)) VS 函數(shù)表達(dá)式,區(qū)別在于:函數(shù)會(huì)聲明提升(即調(diào)用可在聲明之前),函數(shù)表達(dá)式不會(huì)(即調(diào)用必須在聲明之后);
?
一般用,都是先聲明再調(diào)用;
?
例:
console.log(show);?? //V,函數(shù)會(huì)聲明提升
console.log(add);?? //X,函數(shù)表達(dá)式不會(huì)聲明提升,即,const add不會(huì)上移,必須先聲明再調(diào)用
?
const add = function(x,y) {
??? return x+y;
};
?
function show() {
??? console.log(add);
}
?
?
函數(shù)作為參數(shù),或返回一個(gè)函數(shù);
?
例:
function a() {
??? console.log('a func');
??? return function b() {
??????? console.log('b func');
??? };
}
?
let func = a();?? //返回值指向b函數(shù)的定義
func();
輸出:
a func
b func
?
?
例:
function b() {
??? console.log('b func');
}
?
function a(fn) {
??? console.log('a func');
??? return fn;
}
?
let func = a(b);
func();
輸出:
a func
b func
?
?
例,計(jì)數(shù)器:
let counter = function() {
??? let i = 0;
???
??? // function inc() {?? //方式1
??? //???? return ++i;
??? // }
??? // return inc;
?
??? // return function() {?? //方式2,內(nèi)部用不需要函數(shù)名
??? //???? return ++i;
??? // }
?
??? return () => ++i;?? //方式3,箭頭函數(shù)
}
?
?
const c = counter();
console.log(c());
console.log(c());
console.log(c());
輸出:
1
2
3
?
?
例,map函數(shù):
function map(fn,arr) {
??? let newarr = [];
??? for (i in arr) {
??????? newarr[i] = fn(arr[i]);
??? }
??? return newarr;
}
?
// let newarr = map(function (x) {return ++x}, [1,2,3,4,5]);?? //方式1
// let newarr = map((x) => {return ++x}, [1,2,3,4,5]);?? //方式2,若只留返回值(正確為++x),必須把{}和return一起脫掉,若為{++x}則沒有返回值,返回的是[ undefined, undefined, undefined, undefined, undefined ]
let newarr = map((x) => ++x, [1,2,3,4,5]);?? //方式3
console.log(newarr);
輸出:
[ 2, 3, 4, 5, 6 ]
?
?
例,map函數(shù),生成器實(shí)現(xiàn):
var map = function* (fn,arr) {?? //生成器函數(shù)
??? for (i in arr)
??????? yield fn(arr[i]);
};
?
let newarr = map(x => ++x, [1,2,3,4,5]);?? //生成器對(duì)象
for (i of newarr)?? //迭代
??? console.log(i);
輸出:
2
3
4
5
6
?
?
?
是匿名函數(shù),是一種更加精簡(jiǎn)的格式;
let newarr = map(x => ++x, [1,2,3,4,5]);?? //++x為return的值
?
箭頭函數(shù)參數(shù):
如果一個(gè)函數(shù)沒有參數(shù),使用();
如果只有一個(gè)參數(shù),參數(shù)列表可省略小括號(hào);
多個(gè)參數(shù)不能省略小括號(hào),且使用逗號(hào)間隔;
?
箭頭函數(shù)返回值:
若函數(shù)體部分有多行,就要用{},如果有返回值使用return;
若只有一行語句,可同時(shí)省略{}和return;
若只一條return語句,不能省略大括號(hào),即有return關(guān)鍵字必須要有{},如let newarr = map(x => {return ++x},[1,2,3,4,5]);;
若只一條非return語句,加上{}則無返回值;
因此,記住最簡(jiǎn)形式x => x+2即可;
?
?
注:
windows.alert()?? //彈窗,browser對(duì)象,是全局對(duì)象,而js代碼中的全局對(duì)象是在nodejs上;彈窗測(cè)試時(shí)用,現(xiàn)都用遮罩層
browser新版本支持生成器、箭頭函數(shù);
() => {},最簡(jiǎn)單的箭頭函數(shù),返回undefined;
?
?
?
?
?
?
?
?
?
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。