I have array like this:
var notes = ["user1,date:13/2/2008,note:blablabla", "user1,date:15/2/2008,note:blablabla", "user1,date:17/2/2008,note:blablabla", "user1,date:13/3/2008,note:blablabla"];
And I have
var search_date="17/2/2008";
I want to find last occurence of note and user for that note. Anyone knows how? Thanks in advance for your reply.