mirror of
https://github.com/KieSun/all-of-frontend.git
synced 2024-11-13 10:28:14 +08:00
feat: 周报二期
This commit is contained in:
parent
7abe63e35f
commit
885bd959ef
@ -6,4 +6,9 @@
|
||||
|
||||
![qGZMZp](https://yck-1254263422.file.myqcloud.com/uPic/qGZMZp.jpg)
|
||||
|
||||
以后再也不需要换变量名了,特别香!
|
||||
以后再也不需要换变量名了,特别香!
|
||||
|
||||
- Node 12 岁生日了
|
||||
- [.at() 进入 Stage 3](https://github.com/tc39/proposal-relative-indexing-method)
|
||||
|
||||
这是个挺不错的新语法。其他有些语言是可以用 `arr[-1]` 来获取数组末尾的元素,但是对于 JS 来说这是实现不了的事情。因为 `[key]` 对于对象来说就是在获取 `key` 对应的值。数组也是对象,对于数组使用 `arr[-1]` 就是在获取 `key` 为 `-1` 的值。由于以上原因,我们想获取末尾元素就得这样写 `arr[arr.length - 1]`,以后有了 `at` 这个方法,我们就可以通过 `arr.at(-1)` 来拿末尾的元素了,另外同样适用类数组、字符串。
|
Loading…
Reference in New Issue
Block a user