迹忆客 专注技术分享

当前位置:主页 > 学无止境 > WEB前端 > JavaScript >

JavaScript 中将数组转换为不带逗号的字符串

作者:迹忆客 最近更新:2022/12/23 浏览次数:

要将数组转换为不带逗号的字符串,请调用数组的 join() 方法,将空字符串作为参数传递给它 - arr.join('')join 方法返回一个字符串,其中包含由提供的分隔符连接的所有数组元素。

const arr = ['one', 'two', 'three'];

const withoutCommas = arr.join('');
console.log(withoutCommas); // 👉️ 'onetwothree'

console.log(typeof withoutCommas); // 👉️ string

JavaScript 中将数组转换为不带逗号的字符串

我们传递给 Array.join 方法的唯一参数是一个分隔符。

该方法返回一个字符串,其中包含由提供的分隔符连接的所有数组元素。

如果使用空字符串分隔符调用 Array.join 方法,则所有数组元素都将连接起来,中间没有任何字符。

如果我们的用例要求您连接具有不同字符的数组元素,请将字符作为参数传递给 join() 方法。

const arr = ['one', 'two', 'three'];

const withSpaces = arr.join(' ');
console.log(withSpaces); // 👉️ 'one two three'

const withDashes = arr.join('-');
console.log(withDashes); // 👉️ 'one-two-three'

const withCommaAndSpace = arr.join(', ');
console.log(withCommaAndSpace); // 👉️ 'one, two, three'

如果对空数组调用 join 方法,将返回一个空字符串。

console.log([].join('')); // 👉️ ''

如果数组包含未定义的元素、null 或空数组 [],它们将被转换为空字符串。

console.log(['a', 'b', null].join('')); // 👉️ 'ab'

对于大多数用例,此行为非常有效。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Do you understand JavaScript closures?

发布时间:2025/02/21 浏览次数:108 分类:JavaScript

The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.

Do you know about the hidden traps in variables in JavaScript?

发布时间:2025/02/21 浏览次数:178 分类:JavaScript

Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av

How much do you know about the Prototype Chain?

发布时间:2025/02/21 浏览次数:150 分类:JavaScript

The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便