I was reading a tutorial related to High Order Components in React and I found this:
save = () => {
// some logic
}
What is the difference, if there is one, between the way above with the one I was familiar with:
methodName () {
// some logic
}