Issue 6: Accessing array methods crashes
Status:  New
Owner: ----
Reported by wladi...@palant.de, Oct 5, 2010
Any array created by cx.new_array_object() isn't very usable. If the JavaScript code tries to use any of its methods like array.join("\n") or array.pop() Python crashes. Work-around: create a real JavaScript array by evaluating "var array = [];", get the variable and do with it whatever you want.