2 回答
TA贡献1820条经验 获得超10个赞
尝试在 for 循环中使用 let i 之前添加它。请参阅下面的示例。
for (let i in newArray) {
if (i.version.startsWith('iPad')) {
newlist.push(newlist.splice(i, 1)[0]);
}
}
TA贡献1951条经验 获得超3个赞
原代码的几个问题。
失踪
const
/let
上i
in
循环应该是of
。或者可能不是。以下几行似乎假定i
既是索引又是条目。newlist
没有定义。它似乎试图在迭代数组的同时对其进行变异。
我想你正在寻找更像这样的东西。
const newArray = sortBy(getData(), 'version').reverse()
const nonIPads = []
const iPads = []
for (const entry of newArray) {
if (entry.version.startsWith('iPad')) {
iPads.push(entry)
} else {
nonIPads.push(entry)
}
}
const all = [...nonIPads, ...iPads]
console.log(all)
function sortBy(array, property) {
return [...array].sort((a, b) => {
const valueA = a[property]
const valueB = b[property]
if (valueA === valueB) {
return 0
}
return valueA < valueB ? -1 : 1
})
}
function getData() {
return [
{version: 'f'},
{version: 'a'},
{version: 'd'},
{version: 'iPad 3'},
{version: 'iPad 1'},
{version: 'iPad 4'},
{version: 'e'},
{version: 'c'},
{version: 'g'},
{version: 'b'},
{version: 'iPad 2'}
]
}
添加回答
举报