const square1 = function(x) {
return x * x;
}
const square2 = x => x * x;
上述代码中的 square1
和square2
等价。使用箭头函数,代码更为简洁。
const square1 = function(x) {
return x * x;
}
const square2 = x => x * x;
上述代码中的 square1
和square2
等价。使用箭头函数,代码更为简洁。