say I have a set of string from which I have to search within a string that it contains any element or not.
var value = "01,05,04,02,00";
var temp = ["00", "01", "02", "03"];
I want to search existence of any item from temp in value, if any of the items from temp found in value, it should return true else false. what I am trying to do is opposite of searching a string in an array. How to achieve this in javascript?