Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created October 11, 2020 06:59
Show Gist options
  • Select an option

  • Save Jagathishrex/d02b3e94670954b0e69b6de149014fcf to your computer and use it in GitHub Desktop.

Select an option

Save Jagathishrex/d02b3e94670954b0e69b6de149014fcf to your computer and use it in GitHub Desktop.
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