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