我給這個對象獲得日期的最小值和最大值的對象
{"2017-1-1":true,"2017-1-2":true,"2017-1-3":true}
,我怎樣才能得到最小日期和最大日期?我也需要範圍。我做的是
temp = Object.keys(obj[0]).split('-')[2]
const minDate = Math.min(...temp);
const maxDate = Math.min(...temp);
//and then concat year and month to rebuild the date format
我認爲這是不好的代碼。任何更好的選擇?
如果以「」yyyy-mm-dd「'格式保存日期,生活會容易得多。 – 2017-03-18 06:06:39
什麼是'obj'?你期望'obj [0]'是什麼? – 2017-03-18 06:07:50