JSFiddle - React, Tailwind, and code Playground

by hicurin

JavaScript

var parent = {};
                //parent["Task name"] = "Task " + ++x;
                parent["Start time"] = "01/03/2013";
                parent["End time"] = "01/08/2013";
                parent["Duration"] = "5 days";
                parent["Status"] = Math.round(Math.random() * 100);
var newObj = jQuery.extend(true, {}, parent);
alert(newObj["Start time"]);