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