Is there a way we can create an array in JQuery with key and values?
I want to loop through the TFNDailySummaryReportData
array and assign its DateWiseSalesData's Name property to key and DateWiseSalesData as value.
for (var i = 0; i < TFNDailySummaryReportData.length; i++)
{
var keyValueArray = {
Key: TFNDailySummaryReportData[i].DateWiseSalesData.Name;
value: TFNDailySummaryReportData[i].DateWiseSalesData
}
}
Is it possible to achieve something like this? If yes, how?
You were very close, You can define an array and use
.push()
method to populate it.You can also use
.map()