Language GuideBuilt-in TypesStringMethodsfind_lastOn this pagefind_lastGet the index of the last occurrence of the substring. "hello hello!".find_last("hello"); //6"haello haello!".find_last("hello"); //undefined Syntax find_last(substring) Returns The index of the substring as uint when found. Undefined when NOT found.