Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. const countdown = async () => {
  2. for(let daysToEnd = 38; daysToEnd > 0; daysToEnd--) {
  3. console.warn(`${daysToEnd} remaining days to Edison make a shit`)
  4. }
  5. }
  6.  
  7. const makeshit = async () => {
  8. console.error('Edilson can not do this anymore.')
  9. }
  10.  
  11. const edilsonslovelife = async () => {
  12. await countdown()
  13. await makeshit()
  14. }
  15.  
  16. edilsonslovelife()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement