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