Javascript Issue with skuid platform?

Realized that we hadnt converted the milliseconds back to a date … but still no joy

var params = arguments[0],

$ = skuid.$;

var model = skuid.$M(‘AllContacts’);
var row = model.getFirstRow();
var dateVar = row.LastContact;
var now = dateVar.getTime();

var date = new Date(now);

model.updateRow(row,{LastContact : date});