i am getting a in strings and need to remove first and last quotes,please help
var a= "item.countryId ===3 && item.examId ===2 && item.streamId.includes(3) && item.createdName ===manoj "
i have tried these but not worked for me, link
You can try to use a function instead of passing filters as string.
const customFilter = (item) => (item.countryId ===3 && item.examId ===2 && item.streamId.includes(3) && item.createdName ==='manoj')