ES6 Function 面试题
1. 请解释一下箭头函数的特点和使用场景。
答案:
箭头函数是 ES6 中新增的一种函数声明方式。它具有以下特点:
- 箭头函数中的
this
始终指向其定义时所在的上下文。 - 箭头函数不能被用作构造函数,也无法通过
new
运算符来实例化。 - 箭头函数没有自己的
arguments
对象,可以使用 rest 参数来替代。
箭头函数通常用于以下场景:
- 当需要使用
this
关键字时,可以使用箭头函数避免因作用域链问题导致this
指向错误。 - 当需要简写函数表达式时,可以使用箭头函数避免繁琐的
function
关键字和花括号。
2. 使用 ES6 编写一个函数,将数组中的所有元素都平方。
答案:
const squareArray = arr => arr.map(item => item ** 2);
3. 使用 ES6 编写一个函数,判断一个字符串是否为回文字符串。
答案:
const isPalindrome = str => {const reversedStr = str.split('').reverse().join('');return str === reversedStr;
};
4. 使用 ES6 编写一个函数,计算两个数相加的结果。
答案:
const add = (a, b) => a + b;
5. 使用 ES6 编写一个函数,将多个字符串拼接成一个字符串并以指定的分隔符分隔。
答案:
const joinStringsWithDelimiter = (delimiter, ...strings) => strings.join(delimiter);