Hi,Less words, more code:Ruby:x = {a: 3, b: 5}x.reject do |k,v| k == :a end=> {:b=>5}x = context.eval("q={a: 3, b: 5};q")=> [object Object]x.reject do |k,v| k == 'a' end=> [["b", 5]]Is it as by design?I know JS Object is unlike Ruby's Hashmap, is this array of tuples behavior better than a hashmap?
It's just gets odd when passing an array as a value from JS to Ruby:somerubyobject.somemethod({a: [1,2,3,4], b: 'string'})BR, Phil