0
Keeping Track Of Number Of Clicks
Let's say I have a button in a web program. Every time someone clicks on the button, 1 will be added to the current number of clicks. The catch, though, is that I want to keep track of everyone's clicks in total. I'm just curious, how would I go about doing that?
2 Answers
+ 1
You can use local storage.
https://code.sololearn.com/WBEDb4ikkZvP/#html
Edit: my bad, I completely missed your catch. đ±
If you want to count all of your users button clicks you will need a server and database or you could go the firebase route
+ 1
So you want everyoneâs clicks to be added up into a total clicks value? If so, localstorage wonât be near as useful. Youâd be better off using something like firebase to keep track of everything