why is javaScript is not a back end language ? #169376
-
i always thought javascript is back-end language cause it adds a fuctionality to the web |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi bill JavaScript itself is not inherently a backend language because it was originally created to run in the browser for client-side scripting handling things like DOM manipulation, user interaction, and dynamic UI updates. However, with the introduction of Node.js (which runs JavaScript on the server using the V8 engine), JavaScript can now be used for backend development. So the distinction is historical rather than technical — it’s not that JavaScript cannot be backend, but that it wasn’t originally designed for it. In short:
|
Beta Was this translation helpful? Give feedback.
Hi bill
JavaScript itself is not inherently a backend language because it was originally created to run in the browser for client-side scripting handling things like DOM manipulation, user interaction, and dynamic UI updates.
However, with the introduction of Node.js (which runs JavaScript on the server using the V8 engine), JavaScript can now be used for backend development. So the distinction is historical rather than technical — it’s not that JavaScript cannot be backend, but that it wasn’t originally designed for it.
In short: