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