Example:
arr.map(function(el) {return el + 1})
After applying the quick-fix the code looks as follows:
arr.map(el => el + 1)