JS面试Q&A(续2): Rest parameter,Arrow function 等

Posted 动漫引擎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS面试Q&A(续2): Rest parameter,Arrow function 等相关的知识,希望对你有一定的参考价值。

rest parameter 和 Destructuring assignment.

function fun1(...theArgs) {
console.log(theArgs.length);
}

// theArgs is an array

fun1(); // 0
fun1(5); // 1
fun1(5, 6, 7); // 3

function f(a, b, ...theArgs) {
// ...
}

function f(...[a, b, c]) {
return a + b + c;
}

f(1) // NaN (b and c are undefined)
f(1, 2, 3) // 6
f(1, 2, 3, 4) // 6 (the fourth parameter is not destructured)

见 ECMAScript 6 (2015)


Arrow function
* 简洁的语法,
* 没有自己的this, arguments, super 和 new.target.
特别适用于非属性函数,
不能用作构造函数.


function Person(){
this.age = 0;

setInterval(() => {
this.age++; // |this| properly refers to the person object
}, 1000);
}

var p = new Person();

  

 

以上是关于JS面试Q&A(续2): Rest parameter,Arrow function 等的主要内容,如果未能解决你的问题,请参考以下文章

[luoguP2129] L国的战斗续之多路出击(模拟 || 矩阵)

rest_init函数分析(续)

REST实现页面访问量查询修改

最强解析面试题:跳台阶 & 超级跳台阶「建议收藏!」

最强解析面试题:跳台阶 & 超级跳台阶「建议收藏!」

面试题:a==1 && a==2 && a==3 是 true 还是 false?