JavaScript typedArray.name Property Last Updated : 15 Feb, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The typedArray.name is an inbuilt property in JavaScript that is used to represent a string value of the given typedArray constructor name. A list of different typed arrays is specified below: Int8Array();Int16Array();Uint32Array();Uint8Array();Uint16Array();Float32Array();Uint8ClampedArray();Int32Array();Float64Array(); Syntax: typedArray.name; Parameters: It does not accept any parameter because it is a property not a function. Return value: It returns a string value of the given typedArray constructor name. JavaScript code to show the working of this function: Example : javascript // Returning the string value of the given // typedArray constructor name. console.log(Int8Array.name); console.log(Uint8Array.name); console.log(Uint8ClampedArray.name); console.log(Int16Array.name); console.log(Uint16Array.name); console.log(Int32Array.name); console.log(Uint32Array.name); console.log(Float32Array.name); console.log(Float64Array.name); Output: Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array Comment More infoAdvertise with us Next Article JavaScript typedArray.set() Method K Kanchan_Ray Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-typedArray Practice Tags : Misc Similar Reads JavaScript typedArray.from() Property The typedArray.from() is an inbuilt function in JavaScript which is used to construct a new typedArray from a normal array or any iterable object. List of different typedArrays are specified in the table below: Int8Array();Int16Array();Uint32Array();Uint8Array();Uint16Array();Float32Array();Uint8Cla 2 min read JavaScript typedArray.set() Method The typedArray.set() is an inbuilt function in JavaScript which is used to stores a number of values in the given typedArray. typedArray.set(typedArray, offset) Parameters: It accept two parameters which are specified below- typedarray: It is the source array. offset: It is optional and it is into t 1 min read JavaScript typedArray.of() Method The typedArray.of() is an inbuilt function in JavaScript which is used to construct a new typedArray with a variable number of parameters. Syntax: TypedArray.of(element0, element1, ......) Parameters: It accepts parameters of different elements whose typedArray is going to be created. Return value: 1 min read JavaScript typedArray.byteOffset Property The typedArray.byteOffset is an inbuilt property in JavaScript that is used to return the offset in bytes of a given typedArray from the start of its ArrayBuffer. Syntax: typedArray.byteOffset Parameter: It does not accept any parameter because it is a property, not a function. Return value: It retu 1 min read JavaScript typedArray.map() Method The typedArray.map() is an inbuilt function in JavaScript which is used to create a new typedArray with the result of a provided function on each element of the given typedArray. Syntax: typedArray.map(callback) Parameters: It accepts a parameter callback function which accept some parameter which a 1 min read JavaScript typedArray.BYTES_PER_ELEMENT Property The typedArray.BYTES_PER_ELEMENT is an inbuilt property in JavaScript that is used to return the size in bytes of each element in a given typedArray. Syntax: typedArray.BYTES_PER_ELEMENT; Parameter: It does not accept any parameter because it is a property, not a function. Return value: It returns t 1 min read Like