Новое в JavaScript 1.8.5

This translation is in progress.

Далее приведён список изменений в JavaScript 1.8.5. Эта версия была включена в Firefox 4.

Что нового в JavaScript 1.8.5

Новые функции

Фуникция Описание
Object.create() Создаёт новый обЪект с указанным прототипом и свойствами. ошибка 492840
Object.defineProperty() Adds the named property described by a given descriptor to an object.
Object.defineProperties() Adds the named properties described by the given descriptors to an object.
Object.getOwnPropertyDescriptor() Returns a property descriptor for a named property on an object. ошибка 505587
Object.keys() Returns an array of all enumerable properties on an object. ошибка 307791
Object.getOwnPropertyNames() Returns an array of all enumerable and non-enumerable properties on an object. ошибка 518663
Object.preventExtensions() Prevents any extensions of an object. ошибка 492849
Object.isExtensible() Determine if extending of an object is allowed. ошибка 492849
Object.seal() Prevents other code from deleting properties of an object. ошибка 492845
Object.isSealed() Determine if an object is sealed. ошибка 492845
Object.freeze() Freezes an object: other code can't delete or change any properties. ошибка 492844
Object.isFrozen() Determine if an object was frozen. ошибка 492844
Array.isArray() Checks if a variable is an array. ошибка 510537
Date.prototype.toJSON() Returns a JSON format string for a Date object.
Function.prototype.bind() Creates a new function that, when called, itself calls this function in the context provided (with a given sequence of arguments) ошибка 429507

Новые возможности ECMAScript5

Другая работа по стандартизации

Various non-standard syntaxes for defining getters and setters have been removed; ECMAScript 5 defined syntax has not been changed. These were all pretty esoteric and rarely used; if this affects you, see this blog post for details.

Новые обЪекты

Object Description
Proxy Offers support for creating Object and Function proxies that enable meta-programming in JavaScript.

Функциональность, изменённая в JavaScript 1.8.5

Метки документа и участники

Contributors to this page: MichaelBag, fscholz, teoli, yuraantonov
Обновлялась последний раз: MichaelBag,
Скрыть боковую панель