Advertisement
Guest User

Untitled

a guest
May 25th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // prints 1, 2, 3, 4
  2. function f(x) {
  3. console.log(x);
  4. }
  5. class C {
  6. static [f(1)] = f(3);
  7. static [f(2)] = f(4);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement