ES6 TypeScript #4 Find Method

preview_player
Показать описание
In this lesson, you will learn how to find specific data using the Find array method.
Рекомендации по теме
Комментарии
Автор

const students = [
{ name: 'Brad', age:19, major: 'Computer Science' },
{ name: 'Sally', age:20, major: 'Art' },
{ name: 'Michelle', age:22, major: 'Computer Science' },
{ name: 'Joe', age:21, major:'Computer Science' },
{ name: 'Karen', age: 19, major: 'Computer Science' }
]

wllynilson