I have this array:
var BigWordsDates = JSON.parse('<?php echo addslashes($Array_OfDates_to_json) ?>');
and it shows up like this (FireBug DOM):
BigWordsDates Object { #Tahrir=[36], #Egypt=[24], #Morsy=[16], more...}
#AdminCourt ["2012-10-02","2012-10-02","2012-10-09", 2 more...]
I would like to change it to an array of dates with a format like that: 2012-FEB-06. I would appreciate it if someone can tell how to convert that array to a CSV file.