I've got an array of objects defined like this:
var editionsObj = new Array();
function editionObject(name,description)
{
this.name = name;
this.description = description;
}
I need to search the editionsObj array for the existence of a variable in the name field. If no object in array has a name value equal to what I need, I'm going to insert it into the array. I've seen some examples in jQuery but wasn't able to get any to work.
Thanks in advance!