Skip to content

Instantly share code, notes, and snippets.

@indongyoo
Created April 3, 2018 12:32
Show Gist options
  • Save indongyoo/e730a99bf66deef8abc6149998d109c1 to your computer and use it in GitHub Desktop.
Save indongyoo/e730a99bf66deef8abc6149998d109c1 to your computer and use it in GitHub Desktop.
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