Regex change avant la dernière valeur de point

var str = 'esolri.gbn43sh.earbnf'
console.log(
  str.slice(str.lastIndexOf('.') + 1)
)
Ill Ibis