Advertisement
ph4x35ccb

arrows function e funçao anonima

May 12th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7. <script>
  8. setTimeout(function(){
  9.     document.write('Funçao anonima')
  10. },2000);
  11. setTimeout( ()=>{
  12.     document.write('Arrow function')
  13. },2000);
  14. </script>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement