Solución
solution.tsTypeScript
function atLeastOneTrue(firstValue: boolean, secondValue: boolean): boolean {
let result = [firstValue, secondValue];
if(result.includes(true)) return true
return false;
}
// No modificar: necesario para evaluar el resultado.
export { atLeastOneTrue };1respuestas