JavaScript typedArray.name Property Last Updated : 15 Feb, 2023 Comments Improve Suggest changes 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.name Property 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 JavaScript typedArray.keys() Method The typedArray.keys() is an inbuilt function in JavaScript which is used to return a new array iterator containing the keys for each index of the elements of the given typedArray. Syntax: typedArray.keys() Parameter: This function does not accept anything as parameter. Return value: It returns a new 1 min read JavaScript TypedArray.prototype.values() Method TypedArray's values() method returns a new iterator object for the array, this iterator will allow you to traverse through typed arrays and generate the value of each element at every position and like values() method for normal JavaScript arrays, it serves a similar role. SyntaxtypedArray.values()P 1 min read JavaScript typedArray.length() Method The typedArray.length is an inbuilt property in JavaScript which is used to return the length of the given typedArray. Syntax: typedArray.length Parameters: It does not accept any parameter because it is a property not a function. Return value: It returns the length of the given typedArray. Example 2 min read JavaScript typedArray.indexOf() Method The typedArray.indexOf() is an inbuilt function in JavaScript which is used to return the index of the element if found in the given typedArray otherwise it returns -1. Syntax: typedarray.indexOf(Element, Index); Parameters: It accepts two parameter which are specified below- Element: It is the elem 2 min read Like