ES6

function square(arr) {
    return arr.map(v => Math.pow(v, 2));
}

想这样写, but 为什么不支持呢?

function square(arr) {
    return arr.map(v => v**2);
}