Stats
29,258
reputation
397k
reached
193
answers
44
questions
Loading…
About
How to help Ukraine
Pet peeves:
- Images posted instead of text.
- Using
.map()
(or any other array iteration method like.filter
, etc), in JavaScript for simply going through the array instead of.forEach()
or a loop`. In general, use the array methods for their purpose:.map
- I have an array, I need another array where each item is based on the first one.flatMap
- like.map
but I use it when each new item also an array.filter
- I have an array, I need less of it.find
- I have an array, I need one item from it.findIndex
- I have an array, I need the index of an item.some
- I have an array, I need to check if at least one item passes a check.every
- I have an array, I need to see if all items pass a check.forEach
- I have an array, I need to do something with each item. Usually I don't want to return anything.reduce
/.reduceRight
- I have an array, I need to make it into "one value". I'll have to check if I really need to use reduce for thisfor
,for..in
,for..of
,while
,do..while
loops if the problem can't (or doesn't need to) fit into one of the above
- Using regular expressions for doing "something with text" instead of parsing, simple string manipulation, basic arithmetic, etc.
- Generating code as string
- XY problems
- "Quotes that are not quotes"
- Unformatted code
Badges
View all badges
5
gold badges
-
PopulistApr 9
-
ElectorateMay 30, 2021
-
FanaticNov 2, 2020
100
silver badges
-
SportsmanshipFeb 3, 2023
-
InquisitiveNov 19
-
discussionFeb 15, 2024
166
bronze badges
-
announcementFeb 19
-
tagsApr 3
-
supportNov 23
Top tags
View all tags
2,787
Score
158
Posts
67
Posts %
957
Score
31
Posts
13
Posts %
269
Score
32
Posts
14
Posts %
252
Score
19
Posts
8
Posts %
219
Score
28
Posts
12
Posts %
206
Score
32
Posts
14
Posts %
Top network posts
View all network posts