Quotes help make search much faster. Example: "Practice Makes Perfect"
Saturday, January 12, 2013
Codecademy Sample Solution: HTTP Status Codes
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://www.codecademy.com/doesnt_exist", false);
xhr.send();
// Add your code below!
console.log(xhr.status);
No comments:
Post a Comment