How can you find the position of the first character "o" in the following string?
const cadena = "Hello World";
cadena.indexOf("o")
cadena.find("o")
cadena.position("o")
cadena.search("o")