Solución
solution.tsTypeScript
function bothTrue(firstValue: boolean, secondValue: boolean): boolean {
return firstValue && secondValue;
}
// No modificar: necesario para evaluar el resultado.
export { bothTrue };0respuestas
function bothTrue(firstValue: boolean, secondValue: boolean): boolean {
return firstValue && secondValue;
}
// No modificar: necesario para evaluar el resultado.
export { bothTrue };Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.