error code: ```js array.forEach(elm => { // ... }); ``` i have to switch to old syntax: ```js array.forEach(function(elm) { // ... }); ``` There are many libraries that use arrow functions nowadays and we cannot avoid them.
error code:
i have to switch to old syntax:
There are many libraries that use arrow functions nowadays and we cannot avoid them.