最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Array.join() with condition - Stack Overflow

programmeradmin0浏览0评论

How can I use Array.join() function with condition

For example:

var name = ['','aa','','','bb'];
var s = name.join(', ');

The output is: ', aa, , ,'bb',

I want to add a condition that will display only words that are not empty: "aa, bb"

How can I use Array.join() function with condition

For example:

var name = ['','aa','','','bb'];
var s = name.join(', ');

The output is: ', aa, , ,'bb',

I want to add a condition that will display only words that are not empty: "aa, bb"

Share Improve this question edited Aug 3, 2017 at 5:55 Tushar 87.3k21 gold badges163 silver badges181 bronze badges asked May 27, 2016 at 15:06 NomiNomi 1271 gold badge1 silver badge10 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You can use Array#filter to remove empty elements from array and then use Array#join on filtered array.

arr.filter(Boolean).join(', ');

Here, the callback function to filter is Boolean constructor. This is same as

// ES5 equivalent
arr.filter(function(el) {
    return Boolean(el);
}).join(', ');

As empty strings are falsy in JavaScript, Boolean('') will return false and the element will be skipped from the array. And the filtered array of non-empty strings is joined by the glue.

var arr = ['', 'aa', '', '', 'bb'];
var s = arr.filter(Boolean).join(', ');

console.log(s);

You can also use String#trim to remove leading and trailing spaces from the string.

arr.filter(x => x.trim()).join(', ');
发布评论

评论列表(0)

  1. 暂无评论