1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>js</title> </head> <body> <script> var json = [ { day: '2018-12-26 14:31:55' }, { day: '2018-12-27 14:31:55' }, { day: '2018-12-28 14:31:55' }, { day: '2019-12-29 14:31:55' } ];
for(let i in json){ json[i].day=json[i].day.slice(0,10); } console.log(json); </script> </body> </html>
|