class DateHelper {
constructor() {
throw new Error("Date helper não pode ser instanciada");
}
static dataParaTexto(data) {
return `${data.getDate()}/${data.getMonth() + 1}/${data.getFullYear()}`;
colocar $ entre as variaveis ou metodos
}
static textoParaData(texto) {
if (!/\d{4}-\d{2}-\d{2}/.test(texto));
{
throw new Error("Deve estar no formato aaaa-mm-dd");
}
return new Date(
...texto.split("-").map((item, indice) => item - (indice % 2))
);
}
}
unreachable code detected no return, como faço pra resolver? uso o vscode