This question has already been answered:
Third-party service gives the date in this format:
/Date(1332446400000+0300)/ How in JavaScript can it be processed to normal?
It is clear that at the moment.js it is possible to pass a Dat(*) to the object and return what is needed, however:
typeof /Date(1332446400000+0300)/ == "object" // true How can I get rid of too much so that I can safely convey at the moment such a format?
And I need to pre-check the variable for belonging to the Date.
/Date(1332446400000+0300)/ instanceof Date; // false