Answered
Is it possible to see if a certain character exists in an item from an array?
//var myAray = new Array("1","2-3","4","5-8");
I want to see if there is a "-" in any of the items of the above array. If there is a "-" in an item from the array then do something. If there isn't a "-" in item from the array then do something else.