const oldBooks = booksData.filter(book => !newData.some(newBook => newBook.code === book.code)); return oldBooks.concat(newData);