| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/detached | [Back] [Original] |
Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
Since 2024 3, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
ArrayBuffer detached () .
detached undefined , . ArrayBuffer false. ArrayBuffer transferred true . .
const buffer = new ArrayBuffer(8);
console.log(buffer.detached); // false
const newBuffer = buffer.transfer();
console.log(buffer.detached); // true
console.log(newBuffer.detached); // false
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-get-arraybuffer.prototype.detached |
ArrayBuffer.prototype.detached in core-jsArrayBufferArrayBuffer.prototype.transfer()ArrayBuffer.prototype.transferToFixedLength()This page was last modified on 2024 4 21 by MDN contributors.
ArrayBufferObject/FunctionObject.prototype.__defineGetter__()Object.prototype.__defineSetter__()Object.prototype.__lookupGetter__()Object.prototype.__lookupSetter__()Object.prototype.hasOwnProperty()Object.prototype.isPrototypeOf()Object.prototype.propertyIsEnumerable()Object.prototype.toLocaleString()Object.prototype.toString()Object.prototype.valueOf()Your blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |