... Is Not a Function TypeError (JS) | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 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 Réponse
+ 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