Guest User

Untitled

a guest
Sep 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. let x = (y=1)=>{
  2. console.log(y, "n We get 1, so it works.");
  3. }
  4. x()
  5.  
  6. let x = ( let y = (z=1)=>{console.log(z);} )=>{
  7. y()
  8. }
  9. x()
  10.  
  11. document.addEventListener('DOMContentLoaded', ()=>{
  12. alert("DOMContentLoaded !");
  13. });
Add Comment
Please, Sign In to add comment