I'm working on an Angular/Typescript codebase, and the previous author of the codebase has defined all of his TS methods in a particular way, using lambda functions. Personally I define my functions in the usual way, so I'm just wondering whether there is any difference/benefit to doing it his way rather than mine.
For example
functionXMyWay(param: string) {
}
functionXHisWay = (param: string) => {
}