I doubt it will be, and you can define your own function or just use:
var str = 'Hello planet earth, you are a great planet.';
var search = 'planet';
var lastIndex = (str.split('').reverse().join('').indexOf(search.split('').reverse().join('')) - str.length + search.length) * (-1)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I doubt it will be, and you can define your own function or just use:
Please test this, I haven't :P