REST API Url builder !!
You must have come across a situation where you are making a REST API call via frontend code and doing something like this -
try {
const response = await fetch(`/api/users/${userId}/details?name=abc&age=31&height=174&address=xyz`)
const data = re...
nitinreddy3.hashnode.dev1 min read