Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var thawChicken = tineToThaw_minutes => {  
  console.log("Chicken is being thawed...");  
  
  return new Promise((resolve, reject) => {  
    let isSomethingWrong = false;  
  
    setTimeout(() => {  
      if (!isSomethingWrong) {  
        resolve("Thawed chicken"); // <= This will be the argument of the first function parameter of then method.      
      } else {  
        reject(Error("Something wrong happended!")); // <= This error object will be passed as the argument to the second function parameter of then method.      
      }  
  
    }, tineToThaw_minutes * 1000);  
  });  
}
  
var marinateChicken = (chicken, spices) => {  
  console.log("Marinating chicken with spices...");  
  
  return new Promise((resolve, reject) => {  
    setTimeout(() => {  
      resolve("Marinated Chicken");  
    }, 5000);  
  });  
}
  
thawChicken(3 /* minutes */ ).then(  
  chicken => {  
    console.log("What we have after waiting? - " + chicken);  
    let spices = ["Salt", "Sugar", "Pepper", "Garlic"];  
    return marinateChicken(chicken, spices);  
  },  
  error => console.log("Error message: " + error.message)  
).then(  
  marinatedChicken => console.log("After marinating we have: " + marinatedChicken)  
);  
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers