6
¿Hay algún patrón para manejar parámetros de funciones en conflicto?
Tenemos una función API que desglosa un monto total en montos mensuales en función de las fechas de inicio y finalización. // JavaScript function convertToMonths(timePeriod) { // ... returns the given time period converted to months } function getPaymentBreakdown(total, startDate, endDate) { const numMonths = convertToMonths(endDate - startDate); return { …
38
api-design