JS Catch rejeté promet

//makeRequest returns promise using resolve(sucess)/reject(failure)
//use .then() the first function passed in will run on sucess, 
//the second function passed in will run on failure
makeRequest('GET',"https://mywebsite.com").then(
	function(r){
		console.log("success");
	},
	function(r){
		console.log("failure");
	}
);
Friendly Hawk