What is the difference between client side and server side javascript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What is the difference between client side and server side javascript

9th Jan 2020, 8:07 AM
swamy yerri
swamy yerri - avatar
3 Answers
+ 1
server-side : for example when you want to log into your account the server does all the checks and decide whether your account exists or if the password is correct and so on. (not necessarily javascript) client-side : for example the page design is rendered locally on your browser. the things you interact with without the need to get the data from the server. +when you, for example swipe on a page and something happens(show next page, next photo...) , it doesn't need to connect to the server to decide what happens the script is already in your browser cache or embedded in the page.
9th Jan 2020, 8:45 AM
Bahhaⵣ
Bahhaⵣ - avatar
0
client side is what gets executed on your browser locally while you are viewing the pages. it can usually be altered, modified using userscripts using add-ons like Greasemonkey,... server side is what gets executed on the server and then it sends you the data as generated on the server, the user doesn't have any control over it.
9th Jan 2020, 8:21 AM
Bahhaⵣ
Bahhaⵣ - avatar
0
Example please
9th Jan 2020, 8:26 AM
swamy yerri
swamy yerri - avatar