js 改变数组中每条对象的属性值

js 改变数组中每条对象的属性值

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>

效果:
js 改变数组中每条对象的属性值


js 改变数组中每条对象的属性值
https://github.com/chergn/chergn.github.io/0f97a7eed1e8/
作者
全易
发布于
2024年3月28日
许可协议