← Back to Question List
JavaScript Quiz #11
forEach Method
Which array method will execute a function for each element without returning a new array?
📄 Code
1const students = ['Ava','Liam','Noah'];2// Which method logs each student name?