const test = moment();
console.log(test);
console.log(test.day(4));
console.log(test);
let test = moment();
let test2 = JSON.parse(JSON.stringify(test)).day(4); // Uncaught TypeError: JSON.parse(...).day is not a function
let test3 = Object.assign({}, test).day(4); // Uncaught TypeError: Object.assign(...).day is not a function