Advertisement
Guest User

Untitled

a guest
May 16th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class _Jsd {
  2.   w(f) {
  3.     return () => console.log(f())
  4.   }
  5. }
  6.  
  7. let _d = new _Jsd()
  8.  
  9. // 세미콜론 있음
  10. let _w = _d.w;
  11.  
  12. (() => {
  13.   console.log('hello')
  14.   return 'world'
  15. })()
  16.  
  17. // EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement