| Issue 6: | Accessing array methods crashes | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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.
|