The two look identical when printed but are different types.
Acceptance criteria
- 1.#out should show different types.
The two look identical when printed but are different types.
const a = "10"; const b = 10; document.querySelector('#out').textContent = a == b ? "the same" : "different types";
Output ready when you are
Press Run to render your code, or Submit to validate your solution.