(no title)
ccvannorman | 4 months ago
obj.friends.filter(x=>{ return x.city=='New York'})
.sort((a, b) => a.age - b.age)
.map(item => ({ name: item.name, age: item.age }));
does exactly the same without any plugin.am I missing something?
ccvannorman | 4 months ago
obj.friends.filter(x=>{ return x.city=='New York'})
.sort((a, b) => a.age - b.age)
.map(item => ({ name: item.name, age: item.age }));
does exactly the same without any plugin.am I missing something?
joshribakoff|4 months ago
To your point abstractions often multiply and then hide the complexity, and create a facade of simplicity.