0
what are d uses of map, filter, res etc
4 Answers
+ 2
maps, filters and reduce are used for lists. reduce is generally used to reduce a list to a single element, for example, finding sum of all elements in a list.
maps can be used to make a new list using functions or lambda's that define the rule for the list.
filters are used to filter out specific items in a pre existing list.
0
thank you for your help
0
plz give me instances
0
.