forEach()
The forEach() method executes a function once for each element in an array.
It is mainly used when you want to perform an action, such as printing values, updating the UI, or making API calls.
array.forEach(function(element, index, array) {
// code






