Solución
JL@juanluisabreu_4c541ef6
·29/3/2026TypeScriptsolution.tsTypeScript
function bothTrue(firstValue: boolean, secondValue: boolean): boolean {
return firstValue && secondValue;
}
// No modificar: necesario para evaluar el resultado.
export { bothTrue };0respuestas