When do you need to do that?
[].slice.call(document.querySelectorAll(...)).forEach(function () {})
[].forEach.call(document.querySelectorAll(...), function () {})
[].slice.call(document.querySelectorAll('.foo')).forEach(...
When do you need to do that?