JSFiddle - React, Tailwind, and code Playground

JavaScript

var obj = {
	'02/08/2016': 2,
	'03/10/2016': 4,
	'04/05/2016': 2,
	'04/06/2016': 35,
	'04/19/2016': 4,
	'04/26/2016': 22,
	'05/09/2016': 15,
	'05/24/2016': 2,
	'05/30/2016': 4,
	'07/14/2016': 7,
	'08/18/2016': 200
};


$(obj).each(function(index,value) {
  console.log(index);
  console.log(value);
});