Array.prototype.toString() - JavaScript 编辑
toString()
返回一个字符串,表示指定的数组及其元素。
语法
arr.toString()
返回值
一个表示指定的数组及其元素的字符串。
描述
Array
对象覆盖了Object
的 toString
方法。对于数组对象,toString
方法连接数组并返回一个字符串,其中包含用逗号分隔的每个数组元素。
当一个数组被作为文本值或者进行字符串连接操作时,将会自动调用其 toString
方法。
ECMAScript 5 semantics
从 JavaScript 1.8.5 (Firefox 4) 开始,和 ECMAScript 第5版语义(semantics)一致,toString()
方法是通用的,可被用于任何对象。将调用Object.prototype.toString()
,并返回结果值。
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.1. |
ECMAScript 5.1 (ECMA-262) Array.prototype.toString | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) Array.prototype.toString | Standard | |
ECMAScript (ECMA-262) Array.prototype.toString | Living Standard |
浏览器兼容性
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论