We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Object.keys
1 parent 4f00c9e commit 0d62e34Copy full SHA for 0d62e34
src/prototype/lang/object.js
@@ -313,6 +313,12 @@
313
* prescribe an enumeration order. Sort the resulting array if you wish to
314
* normalize the order of the object keys.
315
*
316
+ * `Object.keys` acts as an ECMAScript 5 [polyfill](http://remysharp.com/2010/10/08/what-is-a-polyfill/).
317
+ * It is only defined if not already present in the user's browser, and it
318
+ * is meant to behave like the native version as much as possible. Consult
319
+ * the [ES5 specification](http://es5.github.com/#x15.2.3.14) for more
320
+ * information.
321
+ *
322
* ##### Examples
323
324
* Object.keys();
0 commit comments