-1

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

const _apolloClient = apolloClient ?? createApolloClient(context);
Masih Jahangiri
  • 3,977
  • 1
  • 21
  • 26

1 Answers1

1

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
  • 3,977
  • 1
  • 21
  • 26