I need some assistance with writing a function. Can you help me out?
Let's say I have an array
of objects:
const movieGen = [
{ id: 28, name: "Action" }, { id: 12, name: "Adventure" }, { id: 16, name: "Animation" },
{ id: 35, name: "Comedy" }, { id: 80, name: "Crime" }, { id: 99, name: "Documentary" },
{ id: 18, name: "Drama" }, { id: 10751, name: "Family" }, { id: 14, name: "Fantasy" },
{ id: 36, name: "History" }, { id: 27, name: "Horror" }, { id: 10402, name: "Music" },
{ id: 9648, name: "Mystery" }, { id: 10749, name: "Romance" }, { id: 878, name: "Science Fiction" },
{ id: 10770, name: "TV Movie" }, { id: 53, name: "Thriller" }, { id: 10752, name: "War" },
{ id: 37, name: "Western" }
]
I am in need of a function that will return the name
when provided with a matching id
. For example-
const genresHandler = (id: number) => { ....//Function to be written here }
If I input 28
as the id
, the function should return Action
console.log(genresHandler(28)) output should be: Action
console.log(genresHandler(12)) output should be: Adventure
Can someone assist me in creating this function using either typscript
or javascript
?