I just noticed that NS seems to reject what I thin...
# suitescript
s
I just noticed that NS seems to reject what I think is ECMA5.1 compatible code with getter/setters. i.e. I get an error with something like:
Copy code
var f = {
                        get foo() { return 1; },
                        set foo(v) { }
                    };
NS says: "Notice Syntax error: Property "foo" already defined in this object literal."