Example
var aPromise = new Promise((reslove)=>{
reslove(100)
})
var thePromise = aPromise.then((value)=>{
console.log(value);
})
var threePromise = thePromise.catch((error)=>{
console.log(error);
})
console.log(aPromise !== thePromise); //=>true
console.log(thePromise !== threePromise); //=>true