var a = new Promise(function(resolve, reject) { setTimeout(function(){ resolve('hello world'); }, 1000); }); a.then(function(value) { console.log(a); ...
確定! 回上一頁