JSFiddle - React, Tailwind, and code Playground

HTML

<div id="result"></div>

JavaScript

var history = [{BillingCycleHistoryID: 339, BillingCycleDate: '7/18/2014', StartTime: '7/18/2014', PercentComplete: 100, EndTime: '7/18/2014', HoursRan: 0.16, StartedBy: 'ADMIN'}];

if (typeof history != 'undefined') {
    
    $.each(history, function (key, value) {
       $('#result').append($("<div />").text(value.BillingCycleHistoryID));
   });
   
 }