TypedArray.prototype.toString()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The toString() method of TypedArray instances returns a string representing the specified typed array and its elements. This method has the same algorithm as Array.prototype.toString().

Try it

Syntax

js
toString()

Parameters

None.

Return value

A string representing the elements of the typed array.

Description

See Array.prototype.toString() for more details. This method is not generic and can only be called on typed array instances.

Examples

Converting a typed array to a string

js
const uint8 = new Uint8Array([1, 2, 3]);
// Explicit conversion
console.log(uint8.toString()); // 1,2,3
// Implicit conversion
console.log(`${uint8}`); // 1,2,3

Specifications

Specification
ECMAScript Language Specification
# sec-%typedarray%.prototype.tostring

Browser compatibility

BCD tables only load in the browser

See also