Solución
solution.tsTypeScript
function bothTrue(firstValue: boolean, secondValue: boolean): boolean {
if (firstValue === true && secondValue === true) return true
return false;
}
// No modificar: necesario para evaluar el resultado.
export { bothTrue };0respuestas