Something that resembles to your JSON object example are Array.prototype methods.
They were implemented by a lot of browser vendors a lot of time before ES5, for example Mozilla, started implementing them for it's JavaScript(tm) 1.6 version, as of September 2005.
Other things between the ES3-ES5 gap -not described until ES5- are:
- Not throwing on
for (var prop in null) or undefined, in ES3 a TypeError should happen
Not throwing on FunctionDeclarations inside blocks, e.g.:
{ function foo () {} }
FunctionDeclarations are allowed at the level of Program (global code outside anything) or within the FunctionBody of a function, Blocks can contain only Statements.
Strings with LineContinuations, e.g.:
var s = 'foo \
bar'; // 'foo bar'
Other interesting things exist, like not-quite octal numbers, for example:
var n = 08;
The above NumericLiteral is invalid in any version of the ECMAScript Standard.
The DecimalLiteral syntax doesn't allows a literal to start with 0 (with the exception of course of the 0 literal) and the grammar of OctalIntegerLiterals is specified to take a zero, and then numbers from 0 to 7 (only 0[0-7]+), therefore the literals 08 or 09, should produce a SyntaxError
But that doesn't happen in any implementation I've tested ever, they are treated just like DecimalLiteral, (08 produces 8).
Firefox is the only implementation that will show you a warning:

Edit: Another widely spread non-standard feature that exist nowadays are Callable RegExps.
This feature was introduced by Mozilla, time ago, later cloned by WebKit JSC, V8, and the Opera JS engine.
Basically you are allowed to invoke RegExp objects, like if they were functions, being just syntactic sugar alias for the RegExp.prototype.exec method:
var re = /foo/;
re('foobar'); // ["foo"], just an alias for:
re.exec('foobar'); // ["foo"]
This feature is completely non-standard since ES3 and ES5 do not allow [[Call]] to be defined on RegExp instances, because their internal methods and semantics are fully specified.
Since in those implementations RegExp objects implement the [[Call]] internal method, they are recognized as Functions by the typeof operator:
typeof /foo/; // "function" in some implementations