Guest User

Untitled

a guest
Jul 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <script type="application/javascript;version=1.8">
  2.  
  3. function Constructor( options ) {
  4.  
  5. var [ a, b ] = options;
  6.  
  7. this.a = a;
  8. this.b = b;
  9. }
  10.  
  11. var ctor = new Constructor( [ "Alpha", "Beta" ] );
  12.  
  13.  
  14. console.log(ctor);
  15.  
  16.  
  17. </script>
Add Comment
Please, Sign In to add comment