Firefox Tomorrow

javascript instance method

TypedArray.prototype.toString()

View on MDN ↗

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

Interactive exampleOpen the canonical MDN source to run this embedded demo.
const uint8 = new Uint8Array([10, 20, 30, 40, 50]);

const uint8String = uint8.toString();

console.log(uint8String.startsWith("10"));
// Expected output: true

Syntax

toString()

Parameters

None.

Return value

A string representing the elements of the typed array.

Description

See 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

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

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also