10 lines
196 B
JavaScript
Executable File
10 lines
196 B
JavaScript
Executable File
|
|
function aa(){
|
|
return new Promise((resolve,rejects)=>{
|
|
setTimeout(()=>{
|
|
resolve(111);
|
|
},1000);
|
|
});
|
|
}
|
|
var data = 1;//aa();
|
|
console.log(data instanceof Promise); |