It is advised that you acquaint yourself with the way in which we use the convertToHTML() method provided for you as well as how you can use the innerHTML attribute to set and get data in an HTML element.
2. Formating and output:
You will be using the innerHTML attribute to set your results to the the unorded list <ul>with classname `list`. You should use template strings in order to display and format your ouput to match the specs (`${}` for those that need a reminder)
2. Formating and output:
You will be using the innerHTML attribute to set your results to the the unordered list with classname `list`. You should use template strings in order to display and format your ouput to match the specs (`${}` for those that need a reminder)
3. Additional Notes:
You should not alter the `fetch()` call,this is a way we obtain the movie data from the internet. This should go without saying, but you should not hardcode your results, we will check your submissions to make sure this does not happen. You should use the functional array prototypes that we have gone over in class and that are mentioned in this exercise (map, sort, filter, reduce), using for loops, for..of loops, while loops, etc will result in a substantial amount of point deduction.