在一個對象數組中查找一個指定的對象是否存在

function find(list, elem) { for (let i = 0; i < list.length; i++) { let flag = true; let current = list[i]; for (key in current) { if (elem[key] !== current[key]) { flag =
相關文章
相關標籤/搜索