Bootstrap FreeKB - Node.js - Resolve "TypeError: Cannot convert undefined or null to object"
Node.js - Resolve "TypeError: Cannot convert undefined or null to object"

Updated:   |  Node.js articles

Let's say something like this is being returned.

TypeError: Cannot convert undefined or null to object

 

I first happened upon this when attempting to use JavaScript in HTML. The "mistake" I made that I had the <script> tag before the element that used my JavaScript.

<script src="/path/to/example.js"></script>
<p id="demo"></p>

 

The fix was easy. I simply moved the <script> tag to be after the element that used my JavaScript.

<p id="demo"></p>
<script src="/path/to/example.js"></script>



Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter c34fa6 in the box below so that we can be sure you are a human.