I am studying about the React using textbook. There are some codes I cant understand in the book.
const loggerMiddleware = store => next => action => {
}
I know the anonymous function in the javascript.
(a, b, c) => {
}
But, what is this?
store => next => action => {
}
please help me.