3

What would be my best bet for the implementation of an alternative to Java's WeakHashMapin GWT?

I understand there is no concept of finalizer in Javascript and thus the implementation of weak references is difficult but has somebody come up with a clever solution?

jldupont
  • 93,734
  • 56
  • 203
  • 318

1 Answers1

1

Now it is possible through WeakMap (supported in all major browsers)

Sankozi
  • 500
  • 5
  • 22