I am trying to figure out, how i can convert a unix timestamp to a readable date using javascript.
For an example, i want to convert this unix: 1422360000, to a dat
try this:
new Date(1422360000).toString()
That will make your date look like the string you want.