Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. JavaScript
  3. JavaScript リファレンス
  4. 標準組み込みオブジェクト
  5. TypedArray
  6. TypedArray.prototype.toString()

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

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 ⁨2017年1月⁩.

toString()TypedArray インスタンスのメソッドで、指定された配列とその要素を表す文字列を返します。このメソッドはArray.prototype.toString() と同じアルゴリズムです。

試してみましょう

const uint8 = new Uint8Array([10, 20, 30, 40, 50]);const uint8String = uint8.toString();console.log(uint8String.startsWith("10"));// Expected output: true

構文

js
toString()

引数

なし。

返値

型付き配列の要素を表す文字列です。

解説

詳細については、Array.prototype.toString() をご覧ください。このメソッドは汎用的ではなく、型付き配列インスタンスに対してのみ呼び出すことができます。

型付き配列を文字列へ変換

js
const uint8 = new Uint8Array([1, 2, 3]);// 明示的な変換console.log(uint8.toString()); // 1,2,3// 暗黙の変換console.log(`${uint8}`); // 1,2,3

仕様書

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

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp