In developing a Javascript function, I ran into the following error when I looked at my console: Uncaught TypeError: Failed to execute ‘appendChild’ on ‘Node’: parameter 1 is not of type ‘Node’. In summation, the issue was that I didn’t create a node using document.createElementbefore I used the appendChild function. The code below will show…