I have a JSON Object that when stringified looks like this [{"x":"/Date(1451606400000)/","y":877282.57}]
and I want to get the numeric part of the date 1451606400000
I can use regex, but is there an easier way involving parsing the date object? Perhaps I can construct a date from that value and then call a method to get the numeric component?