Javascript String getWcfJsonDate()

Description

Javascript String getWcfJsonDate()

String.prototype.getWcfJsonDate = function () {
    return new Date(parseInt(this.match(/\/Date\(([0-9]+)(?:.*)\)\//)[1]));
};



PreviousNext

Related