| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/join | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since September 2016.
The join() method of TypedArray instances returns a new string that is the concatenation of all elements in this typed array, separated by commas or a specified separator string. If the typed array has only one item, that item's stringification is returned without using the separator. This method has the same algorithm as Array.prototype.join().
const uint8 = new Uint8Array([10, 20, 30, 40, 50]);
console.log(uint8.join());
// Expected output: "10,20,30,40,50"
console.log(uint8.join(""));
// Expected output: "1020304050"
console.log(uint8.join("-"));
// Expected output: "10-20-30-40-50"
join()
join(separator)
separator OptionalA string to separate each pair of adjacent elements of the typed array. If omitted, the typed array elements are separated with a comma (",").
A string with all typed array elements joined. If array.length is 0, the empty string is returned.
See Array.prototype.join() for more details. This method is not generic and can only be called on typed array instances.
const uint8 = new Uint8Array([1, 2, 3]);
uint8.join(); // '1,2,3'
uint8.join(" / "); // '1 / 2 / 3'
uint8.join(""); // '123'
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-%typedarray%.prototype.join |
TypedArray.prototype.join in core-jsTypedArrayTypedArray.prototype.toString()Array.prototype.join()String.prototype.split()This page was last modified on Jul 28, 2026 by MDN contributors.
TypedArrayObject/FunctionBigInt64ArrayBigUint64ArrayFloat16ArrayFloat32ArrayFloat64ArrayInt8ArrayInt16ArrayInt32ArrayUint8ArrayUint8ClampedArrayUint16ArrayUint32ArrayYour 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 |