我有这段可在js中运行的代码,非常简单:
const yearsDate = data.map(([item]:string[]) => new Date(item));
// x-axis max
const maxDate = max(yearsDate)
const xMaxDate = new Date(maxDate);
yearsDate例如:['01 -01-2010','02 -10-2009'],但这很奇怪,因为它在新的Date(maxDate)上出现错误:
Argument of type 'string | undefined' is not assignable to parameter of type 'ReactText'