conventions.io

Tech Challenge

2026-08-16

🟨

Daily Tech Challenge

JavaScript

medium
Question 1 of 5

What three values, then what fourth line, does this code log?

Example
console.log(typeof 10n, 10n == 10, 10n === 10);

try {
  console.log(1n + 1);
} catch (e) {
  console.log(e.constructor.name);
}

Sunday, August 16, 2026 · A new challenge drops every day