When using '==' to compare a string and number for equality,
const a = '1234';
const b = 1234;
// The condition will always return 'false' due to the mismatched types of 'string' and 'number'.
const c = a == b;
TypeScript raises an error: This condition will always return 'false' since the types 'string' and 'number' have no overlap.
However, it works in JavaScript;
Is there any way to remove the error without using the Number function for conversion?