I'm very new to Angular 4 development. I encounter someArray.findIndex() is not a function. How to add this .findIndex() javascript function in TypeScript.
I'm building a calendar component, following function gives me error
WEBPACK_IMPORTED_MODULE_2_lodash.findIndex is not a function at CalendarComponent.isSelected (calendar.component.ts:4
isSelected(date: moment.Moment): boolean {
return _.findIndex(this.selectedDates, (selectedDate) => {
return moment(date).isSame(selectedDate.mDate, 'day');
}) > -1;
}
Thank you so much.