From da4b494e26ee5a695e60a3e9ff02729d2ef778cb Mon Sep 17 00:00:00 2001 From: Nicholas Lee Date: Fri, 17 Nov 2017 11:43:46 +0900 Subject: [PATCH] typo typo --- front-end/interview-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/interview-questions.md b/front-end/interview-questions.md index a3f1f52a..bb648a0d 100644 --- a/front-end/interview-questions.md +++ b/front-end/interview-questions.md @@ -879,7 +879,7 @@ This is a browser-reported string that allows the network protocol peers to iden ### Explain Ajax in as much detail as possible. -Ajax (asynchronous JavaScript and XML") is a set of web development techniques using many web technologies on the client side to create asynchronous web applications. With Ajax, web applications can send data to and retrieve from a server asynchronously (in the background) without interfering with the display and behavior of the existing page. By decoupling the data interchange layer from the presentation layer, Ajax allows for web pages, and by extension web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly substitute JSON for XML due to the advantages of being native to JavaScript. +Ajax (asynchronous JavaScript and XML) is a set of web development techniques using many web technologies on the client side to create asynchronous web applications. With Ajax, web applications can send data to and retrieve from a server asynchronously (in the background) without interfering with the display and behavior of the existing page. By decoupling the data interchange layer from the presentation layer, Ajax allows for web pages, and by extension web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly substitute JSON for XML due to the advantages of being native to JavaScript. The `XMLHttpRequest` API is frequently used for the asynchronous communication or these days, the `fetch` API.