QuestenaPractice that shows what to review next
Question 8

Which expression is a valid BigInt literal representing the integer forty-two?

  1. BigInt.42
  2. 42.0n
  3. 42nCorrect answer
  4. n42

Explanation

The n suffix marks an integer literal as a BigInt, making 42n valid. A decimal fraction with that suffix is invalid because BigInt represents integers rather than fractional numeric values.

Continue with this test

Start practice
Question 8: Which expression is a valid BigInt literal representing the… · JavaScript Fundamentals · Questena