Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
List the difference between JavaScript and Ajax
Home
AJAX
List the difference between JavaScript and Ajax
0
votes
asked
Aug 8, 2023
in
AJAX
by
sharadyadav1986
List the difference between JavaScript and Ajax
javascript
ajax
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 8, 2023
by
sharadyadav1986
The below table explains the differences between the two:
JavaScript
Ajax
It is open source scripting language for client side web development, even at server side (Node.js)
It is technology used for standalone and web based development, with libraries and framework that extends JS functionality
JavaScript does not communicate/translate between programs developed in different languages.
It acts as translator that communicates among programs developed in different languages.
JavaScript is client side scripting that are used in input validation, DOM handling, to add animated 2D/3D graphics on webpage and developing interactive Games
Ajax retrieves data from the server using XMLHttpRequest object.
It is an add-on to HTML for functionalities like client side validations, DOM handling and event handling
Ajax send and receive data from server thereby updates portion of web page, without page reload
...