JavaScript数组新方法array.at()
array.at()方法 简单来说,arrat.at(index)访问index参数处的元素。 如果index参数是一个正整数>=0,该方法返回该索引处的项目 const fruits = ['orange','apple','banana','grape'] const item = fruits.at(1); item;//=>'apple' 如果index参数大于或等于数组长度,则与常规访问器一样,该方法返回und



