react this.state.selectedDays.toLocaleDateString is not a function code example
Example: react this.state.selectedDays.toLocaleDateString is not a function
function formatTime(time, prefix = "") {
return typeof time == "object" ? prefix + time.toLocaleDateString() : "";
}