Regex berubah sebelum nilai titik terakhir

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