Can someone tell me why this works on IE Mac:
uniqueId = (new Date()).getTime () % 10000000;
but this doesn't????
var uniqueId = (new Date()).getTime () % 10000000;
Other instances of the var keyword do not have issues? What gives? TIA~ PJ
uniqueId = (new Date()).getTime () % 10000000;
but this doesn't????
var uniqueId = (new Date()).getTime () % 10000000;
Other instances of the var keyword do not have issues? What gives? TIA~ PJ
Comment