А
Size: a a a
DE
B
B
DE
F
F
CM
DE
DE
DE
DE
[
{ id: 1, title: 'test 1' },
{ id: 2, title: 'test 2' },
{ id: 3, title: 'test 3' },
{ id: 4, title: 'test 4' },
]
[
1,
2,
3,
4,
]
DE
DE
DE
DE
[1,2,3].map(function (el) {
return el + 1
})
// [2,3,4]
S
[1,2,3].map(function (el) {
return el + 1
})
// [2,3,4]
DE
[1,2,3].map(function (el) {
return 1
})
// [1,1,1]
S
[1,2,3].map(function (el) {
return 1
})
// [1,1,1]