indexOf()
const superheroes = ['아이언맨', '캡틴 아메리카', '토르', '닥터 스트레인지'];
const index = superheroes.indexOf('토르');
console.log(index); // 결과값: 2
findIndex()
const todos = [
{
id : 1,
text : '빨래',
done: true
},
{
id: 2,
text: '숙제',
done: true
},
{
id : 3,
text: '개밥주기',
done: false
}
];
const index2 = todos.findIndex(todo => todo.id === 1);
console.log(index2); // 결과값: 0
find()
const todos = [
{
id : 1,
text : '빨래',
done: true
},
{
id: 2,
text: '숙제',
done: true
},
{
id : 3,
text: '개밥주기',
done: false
}
];
const index2 = todos.find(todo => todo.id === 1);
console.log(index2);
// 결과값: Object { id: 1, text:'빨래', done: true }