Skip to content

Instantly share code, notes, and snippets.

View jasonweng's full-sized avatar

jason jasonweng

  • The Plant
  • Hangzhou China
View GitHub Profile
@jasonweng
jasonweng / Promise.js
Created March 14, 2018 07:19
Front end interview tests
var p1=new Promise(resolve => {
console.log(1)
resolve(2)
})
var p2=new Promise(resolve => {
console.log(3)
resolve(p1)
})
p1.then(re => {
console.log(re)