Optional-chaining in Angular

2.5k Views Asked by At

I'm using optional chaining on an object which in turn gives this error after compiling the code

For example

const someObj = {pet_animals: {'dog', 'cat'}};
const duplicate = someObj?.wild_animals;

tsconfig file

enter image description here

Error message

enter image description here

1

There are 1 best solutions below

0
On

optional chaining was introduced in ES2020 freeCodecamp.org. If you are your using js version before ES2020, you will get that error.

That might be the reason why you couldn't use optional chaining,

solution:

duplicate = someObj.wild_animals ? someObj.wild_animals : undefined