un-defined
Results
1
comments of
un-defined
var format = function(sales) { var arr = new Array(12).fill(null); for (const month in sales) arr[month - 1] = sales[month]; return arr; }