const searchMovies=async(title)=>{
const response =await fetch(`${API_URL}&s=${title}`)
const data = await response.json();
setMovies(data.Search)
}
What is &s
inside the API call? What does it do?
I tried Googling for answers but couldn't find any.