Since I haven't found any documentation of IBM's com.ibm.jscript.std.ObjectObject
or com.ibm.jscript.std.ArrayObject
I wanted to ask if they are thread-safe and/or synchronized, i.e. if I can safely use them in a multi-thread environment without getting problems with ConcurrentModificationExceptions etc.
PS: I know I could for example replace these objects with Maps and Lists from java.util.concurrent
, but this question does not aim at finding a workaround.