-1

I saw this code but did not understand what this symbole means in Javascript or typescript:

const _apolloClient = apolloClient ?? createApolloClient(context);
Masih Jahangiri
  • 9,489
  • 3
  • 45
  • 51

1 Answers1

2

Short answer for lazy people like me:

If firstValue is null or undefined

console.log(firstValue ?? secondValue) // secondValue

If firstValue isn't null or undefined

console.log(firstValue ?? secondValue) // firstValue
Masih Jahangiri
  • 9,489
  • 3
  • 45
  • 51