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>
 
/* ES6 */
const isMomHappy = true;
// Promise
const willIGetNewPhone = new Promise(
    (resolve, reject) => { // fat arrow
        if (isMomHappy) {
            const phone = {
                brand: 'Samsung',
                color: 'black'
            };
            resolve(phone);
        } else {
            const reason = new Error('mom is not happy');
            reject(reason);
        }
    }
);
const showOff = function (phone) {
    // short way
    const message = 'Hey friend, I have a new ' +
          phone.color + ' ' + phone.brand + ' phone';
    return Promise.resolve(message);
  
    // long way
//     return new Promise(
//         (resolve, reject) => { // fat arrow
//             const message = 'Hey friend, I have a new ' +
//                 phone.color + ' ' + phone.brand + ' phone';
//             resolve(message);
//         }
//     );
};
// call our promise
const askMom = function () {
    willIGetNewPhone
        .then(showOff)
        .then(fulfilled => console.log(fulfilled)) // fat arrow
        .catch(error => console.log(error.message)); // fat arrow
};
askMom();
Output

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

Dismiss x
public
Bin info
chybiepro
0viewers