#Looping with Foreach The forEach() method executes a provided function once for each array element. var arr = ["one", "two", "three"]; arr.forEach(e => console.log(e));