JSFiddle - React, Tailwind, and code Playground
JavaScript
var Response = {
LCID: 321
};
Date.prototype.LCID = Number(0);
Date.prototype.LCID.valueOf = function() { return Response.LCID; };
document.write((new Date()).LCID);
Response.LCID = 456;
document.write((new Date()).LCID);