I know how to change date to readable format in php like below
$jobpostdate = date("Y-m-d", '1434460015');
how can I do same thing with JavaScript If I have this UNIX timestamp value 1434460015
or any other UNIX timestamp value value like this , I have to do this within ajax success function, what can be the syntax?