Skip to content

Instantly share code, notes, and snippets.

@CJReed
CJReed / datetime_properties_in_titanium
Created April 9, 2011 10:23
Storing date/time properties in Titanium Mobile
// CJ_Reed, 9th Apr 2011
// ---------------------
// Storing date/time properties in Titanium Mobile
// (Rather than convert to text and back)
// create array and insert date/time value
var rightNowArray = [];
var rightNow = new Date();
rightNowArray.push({time:rightNow});