Language GuideBuilt-in TypesArrayMethodsfind_lastOn this pagefind_lastFind the last element of the array based on the test. [3,1,2,3].find_last((thisElement) => thisElement === 3); // returns the last 3 Syntax find_last(callback) Returns The last found value. An undefined when nothing is found. Notes The callback is expected to contain ONE parameter.