Is it possible to have multiple keys giving the same result in a JS Map, without having to write all of them ?
For example:
const mp = new Map<number, string>([
[2 || 4, 'even'],
[1 || 3, 'odd']
]);
This does not work but I am looking for something similar to avoid a switch case which is very verbose