Angular 12:set and get value from a textbox in a record inside grid

As title.
Let me use an example to explain what I want. Assume that I am a teacher and have a set of student exam scores like this:

[
{"name":"John","score":88},
{"name":"Andy","score":80},
{"name":"Mary","score":93},
{"name":"Sandra","score":76},
{"name":"Thomas","score":55},
{"name":"Peter","score":69}
]

I want to display it inside a grid with score field is shown in an input area that I can edit to change student’s score. And I need to get the changed score of a student. Could someone guide me a way to get it? I’ve searched use key word “angular set and get input inside grid” but find some didn’t match what I needed and some uses older Angular.js and may not suitable for my request.