Guest User

Untitled

a guest
Jul 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const get3sync = () => 3;
  2. const get3async = async () => 3;
  3. const get3FromPromiseAsync = async () => Promise.resolve(3);
  4. console.log(get3sync());
  5. console.log(get3async());
  6. console.log(get3FromPromiseAsync());
Add Comment
Please, Sign In to add comment