Here is an array that I'm working with:
const _array = [{id: 1, name: 'Adam'}, {id:3, name: 'Crystal'}, {id:2, name: 'Bob'}, {id: 4, name: 'Daisy'}];
Can you provide a concise line of code in TypeScript to retrieve the item from the array where the name is equal to Crystal?