From b6e8283908f480af40b66329cfe2b6252bc9fac2 Mon Sep 17 00:00:00 2001 From: Nicholas Lee Date: Fri, 17 Nov 2017 12:16:47 +0900 Subject: [PATCH] Fix typo (#88) 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.