Created
April 3, 2018 12:32
-
-
Save indongyoo/e730a99bf66deef8abc6149998d109c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go([0, 0, 3000, 5000, 6000, 1000, 5000], | |
some(a => new Promise(function (resolve) { | |
setTimeout(function() { resolve(a); }, a); | |
})), | |
b => console.log(b, '<---------- 3초 정도 뒤')); | |
// true <------ 3초 정도 뒤 | |
// - 0, 0, 3000에 해당하는 함수만 평가 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment