DEV Community

Discussion on: What Subset Of The Language Do You Not Use?

Collapse
 
teamroggers profile image
Rogier Nitschelm

Nice list. I also favor functional programming, so I notice a lot of overlap with your lists, and some differences :)

In Javascript I try to avoid:

  • any sort of for-loops
  • let-bindings
  • inheritance
  • nested conditions
  • function-keyword

I do sometimes use:

  • recursion
  • optional parameters
  • classes