fixed a typo

ref: https://github.com/javascript-tutorial/en.javascript.info/issues/3007
This commit is contained in:
Lavrentiy Rubtsov 2022-05-14 15:26:28 +06:00 committed by GitHub
parent 2901e0c645
commit bb1450055c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
`XMLHttpRequest` is a built-in browser object that allows to make HTTP requests in JavaScript.
Despite of having the word "XML" in its name, it can operate on any data, not only in XML format. We can upload/download files, track progress and much more.
Despite having the word "XML" in its name, it can operate on any data, not only in XML format. We can upload/download files, track progress and much more.
Right now, there's another, more modern method `fetch`, that somewhat deprecates `XMLHttpRequest`.