Created
October 11, 2020 06:59
-
-
Save Jagathishrex/d02b3e94670954b0e69b6de149014fcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| request.onload = function() { | |
| if(request.status === 200) { | |
| console.log("Response from server = ", request.response); | |
| } else { | |
| consle.log( request.status , ":", request.statusText ); // 500: Internal server error | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment