all-of-frontend/weekly/第二期.md
2021-06-06 11:25:37 +08:00

1.4 KiB
Raw Blame History

新闻

  • What's New In DevTools (Chrome 92)

    有挺多新功能的但是我觉得里面最香的是这个Support for const redeclarations in the Console。

    qGZMZp

    以后再也不需要换变量名了,特别香!

  • Node 12 岁生日了

  • .at() 进入 Stage 3

    这是个挺不错的新语法。其他有些语言是可以用 arr[-1] 来获取数组末尾的元素,但是对于 JS 来说这是实现不了的事情。因为 [key] 对于对象来说就是在获取 key 对应的值。数组也是对象,对于数组使用 arr[-1] 就是在获取 key-1 的值。由于以上原因,我们想获取末尾元素就得这样写 arr[arr.length - 1],以后有了 at 这个方法,我们就可以通过 arr.at(-1) 来拿末尾的元素了,另外同样适用类数组、字符串。

    // Polyfill
    function at(n) {
        // ToInteger() abstract op
        n = Math.trunc(n) || 0;
        // Allow negative indexing from the end
        if(n < 0) n += this.length;
        // OOB access is guaranteed to return undefined
        if(n < 0 || n >= this.length) return undefined;
        // Otherwise, this is just normal property access
        return this[n];
    }