is it possible to turn two array into a specific format , because i need the specific format to create my D3 graph.
Actually, what i have , it's these two array,
date = ["sept,09 2015","sept, 10 2015","sept, 11 2015"]
likes = [2,4,5]
and i want to turn into this format
[{ date: '...', likes: '...'},
{ date: '...', likes: '...'}]