Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js catch rejected promise

//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");
	}
);
 
PREVIOUS NEXT
Tagged: #js #catch #rejected #promise
ADD COMMENT
Topic
Name
6+6 =