I'm working on a challenge that requires us to use Underscore and JQuery to make changes to the DOM, but the second part of the challenge is requiring us to use Javascript browser utilities to do the same thing.
We are given an Array, and asked to manipulate the data and append the result to the DOM. I did that using the _.each method and $().append. For the second part, I am using the Javascript forEach() method to manipulate the data, but how do I use javascript utilities to append the resulting variable to the DOM with without jQuery?