... Is Not a Function TypeError (JS) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

... Is Not a Function TypeError (JS)

This has happened multiple times with different codes and I have no idea why it is happening. My function 'like()' is getting called when I click the like button. Although it being clearly defined (in the right scope) it continues to say: "Uncaught TypeError, like is not a function" https://code.sololearn.com/WtZsc029OMO1/?ref=app

14th Apr 2019, 7:21 PM
Clueless Coder
Clueless Coder - avatar
1 Answer
+ 2
That happened as a result of name clashing, what I mean is that, you defined a variable and function with the same name. That's what confused javascript. But this runs without error https://code.sololearn.com/W9GJfJG5zd70/?ref=app
14th Apr 2019, 7:32 PM
Dlite
Dlite - avatar