Solución
solution.tsTypeScript
export function createServer({host="localhost", port=3000}: { host?: string; port?:number }={}): string {
return `${host}:${port}`;
}0respuestas
export function createServer({host="localhost", port=3000}: { host?: string; port?:number }={}): string {
return `${host}:${port}`;
}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.