function someFunc () {
const arr = [
{
title: 'some title',
count: 1,
price: 25
}
]
function checkItem(arr, title){
arr.forEach((item, index)=> {
if (item.title === title) {
console.log(index) // выводит индекс искомого элемента
return index // возвращает undefined
}
})
}
console.log(checkItem(arr, 'some title'))
}
someFunc ()
function someFunc () {
const arr = [
{
title: 'some title',
count: 1,
price: 25
}
]
function checkItem(arr, title) {
const index = arr.findIndex((item) => item.title === title);
return index === -1 ? 'не удалось найти элемент' : `индекс элемента ${index}`;
}
console.log(checkItem(arr, 'some title'));
console.log(checkItem(arr, 'some not exist title'));
}
someFunc ()