lets say I have an array of filter strings that I need to loop and check against with other passed in string.
var filterstrings = [\'firststring\',\'secondst
Fixed case sensitivity issue using toLowerCase(). It turns all the string to lower case while comparing.
toLowerCase()
string
var product=productList.filter((x) => x.Name.toLowerCase().includes(("Active").toLowerCase()))