#每日一题#
js 可以使用 .at 获取参数指定位置的字符,支持负索引(即倒数的位置)
[1,2,3].at(0) // 1
[1,2,3].at(-1) // 3
[1,2,3].at(100) // undefined
1