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");
      }else{
        reject(Error("Something wrong happended!"));
      }
    }, tineToThaw_minutes * 1000);
  });
}
thawChicken(3 /* minutes */).then(
  chicken => console.log("What we have after waiting? - " + chicken),
  error   => console.log("Error message: " + error.message)
);
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers