What is client side javascript and what is server side javascript?

前端 未结 8 1513
南方客
南方客 2020-12-08 05:29

Will any one please explain me what is server side java script and client side java script

Because I recently heard about livewire JavaScript is server side and navi

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-08 06:11

    There are 3 major types of JavaScript namely:

    1. Client-Side JavaScript (CSJS) -- an extended version of JavaScript that enables the enhancement and manipulation of web pages and client browsers

    2. Server-Side JavaScript (SSJS) -- an extended version of JavaScript that enables back-end access to databases, file systems, and servers

    3. Core JavaScript -- the base JavaScript language

    Client-Side JavaScript (CSJS) and Server-Side JavaScript (SSJS) are dependent on the core JavaScript and cannot work without it.

    Source

提交回复
热议问题