JS toString()

🌙
手机阅读
本文目录结构

**toString()**方法返回一个表示指定数组及其元素的字符串。这个方法的算法和Array.prototype.toString()_一样。_TypedArray 在这是typed array types 之一。

语法

typedarray.toString()

返回值

一个字符串,表示类型数组(typed array)的元素。

描述

 TypedArray 对象重写了ObjecttoString方法。对 TypedArray 对象来说,toString 方法联结了数组,并返回一个字符串,它包含由逗号分隔的数组元素。例如,下面的代码创建了一个类型数组,使用toString 将数组转化为字符串。

var numbers = new Uint8Array([2, 5, 8, 1, 4])
numbers.toString(); // "2,5,8,1,4"

当一个类型数组表示为文本值,或者当一个数组被用于字符串连接,则JavaScript 将自动调用 toString 方法。

兼容性

如果浏览器还不支持TypedArray.prototype.toString() 方法,JavaScript 将调用ObjecttoString 方法:

var numbers = new Uint8Array([2, 5, 8, 1, 4])
numbers.toString(); // "[object Uint8Array]"

规范

Specification Status Comment
[ECMAScript 2015 (6th Edition, ECMA-262)
TypedArray.prototype.toString](https://www.ecma-international.org/ecma-262/6.0/#sec-%typedarray%.prototype.tostring) Standard 初始定义
[ECMAScript Latest Draft (ECMA-262)
Array.prototype.toString](https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tostring) Draft  

浏览器兼容性

We’re converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven’t yet converted the data it contains.

  • Desktop
  • Mobile
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 51 (51) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) 51.0 (51) (Yes) (Yes) (Yes)

相关链接

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了