difference between client side javascript and server side javascript?
Answers
Answer: client side java script comprises the basic languages and predefined objects which are relevant to running java script in the browser . the client side java script is embedded directly by in the HTML page
Server side java script also resemble like client side java script . it has relevant java script which is to run in server . the server side java script are deployed only after compilation
Explanation:
hope it helps
Client-side means that the JavaScript code is run on the client machine, which is the browser. Server-side JavaScript means that the code is run on the server which is serving web pages. One runs in the browser, the other runs on the server.