const promise = new Promise((resolve, reject) =>{
    if (true) {
        resolve('Success');
    }
    resolve('Error');
});

const log = (e) => console.log(e);

promise
    .then(log)
    .catch(log);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: