✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was gibt folgender Code aus?
const words = ["hi", "hello", "hey"];const result = words.find(w => w.length > 2);console.log(result);