I am trying to use the optional chaining operator (?.) in my express app – it throws error whenever i try.
JavaScript
x
6
1
if (user.address?.postal_code.length > 0 ) {
2
^
3
4
SyntaxError: Unexpected token '.'
5
at wrapSafe (internal/modules/cjs/loader.js:1053:16)
6
I have tried all variations
JavaScript
1
15
15
1
user?.address?.postal_code?.length
2
user?.address?.postal_code.length
3
user?.address.postal_code.length
4
5
6
"engines": {
7
"node": "10.16.0",
8
"npm": "6.9.0"
9
},
10
"dependencies": {
11
"body-parser": "^1.19.0",
12
"express": "^4.17.1",
13
14
}
15
Advertisement
Answer
You have 2 options
- Upgrade your Node version. Only these versions support optional chaining. As you can see, only Node 14.5+ supports optional chaining
- 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
1
4
1
if (user.address?.postal_code.length > 0 ) {
2
// Do stuff
3
}
4
Turns into:
JavaScript
1
6
1
var _user$address;
2
3
if (((_user$address = user.address) === null || _user$address === void 0 ? void 0 : _user$address.postal_code.length) > 0) {
4
// Do stuff
5
}
6