Параметры по умолчанию в ES6

let func = (a, b = 2) => {
  return a + b
}
Outrageous Ostrich