How can you find the position of the last character 'o' in the following string?
const str = "Hello, World";
str.searchReverse("o")
str.lastIndexOf("o")
str.rIndexOf("o")
str.findLast("o")