| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Float16Array | [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 2025 4, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Float16Array 16 . DataView . 0 . (, ) .
Float16Array TypedArray .
: Float16 JavaScript API CPU . . float-backed canvases, WebGPU, WebGL, stable diffusion .
Float16Array() Float16Array .
Float16Array.BYTES_PER_ELEMENT . Float16Array 2.
Float16Array.prototype , Float16Array .
Float16Array.prototype.BYTES_PER_ELEMENT . Float16Array 2 .
Float16Array.prototype.constructor . Float16Array Float16Array .
//
const float16 = new Float16Array(2);
float16[0] = 42;
console.log(float16[0]); // 42
console.log(float16.length); // 2
console.log(float16.BYTES_PER_ELEMENT); // 2
//
const x = new Float16Array([21, 31]);
console.log(x[1]); // 31
// TypedArray
const y = new Float16Array(x);
console.log(y[0]); // 21
// ArrayBuffer
const buffer = new ArrayBuffer(32);
const z = new Float16Array(buffer, 4, 4);
console.log(z.byteOffset); // 4
//
const iterable = (function* () {
yield* [1, 2, 3];
})();
const float16FromIterable = new Float16Array(iterable);
console.log(float16FromIterable);
// Float16Array [1, 2, 3]
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-float16array |
This page was last modified on 2024 12 17 by MDN contributors.
Float16ArrayTypedArrayTypedArray.prototype.at()TypedArray.prototype.copyWithin()TypedArray.prototype.entries()TypedArray.prototype.every()TypedArray.prototype.fill()TypedArray.prototype.filter()TypedArray.prototype.find()TypedArray.prototype.findIndex()TypedArray.prototype.findLast()TypedArray.prototype.findLastIndex()TypedArray.prototype.forEach()includes()TypedArray.prototype.indexOf()TypedArray.prototype.join()TypedArray.prototype.keys()lastIndexOf()TypedArray.prototype.map()TypedArray.prototype.reduce()reduceRight()TypedArray.prototype.reverse()TypedArray.prototype.set()TypedArray.prototype.slice()TypedArray.prototype.some()TypedArray.prototype.sort()TypedArray.prototype.subarray()toLocaleString()TypedArray.prototype.toReversed()TypedArray.prototype.toSorted()TypedArray.prototype.toString()TypedArray.prototype.values()TypedArray.prototype.with()TypedArray.prototype[@@iterator]()Object/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()BigInt64ArrayBigUint64ArrayFloat32ArrayFloat64ArrayInt8ArrayInt16ArrayInt32ArrayUint8ArrayUint8ClampedArrayUint16ArrayUint32ArrayYour 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 |