Skip to content
Advertisement

chaining operator throwing error in express app

I am trying to use the optional chaining operator (?.) in my express app – it throws error whenever i try.

JavaScript

I have tried all variations

JavaScript

Advertisement

Answer

You have 2 options

  1. Upgrade your Node version. Only these versions support optional chaining. As you can see, only Node 14.5+ supports optional chaining
  2. If you want to support older versions such as 12, you will need to transpile your code. Take a look at Babel or TypeScript. These programs take your code and transform it into code that is compatible with older Node versions. For example, your code:
JavaScript

Turns into:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement