文字列1行を複数行へコピー

お世話になります。 文字列1行で A、B 、Cと3つフィールドがある場合 これを 文字列複数行へまとめたいのですが A B C というように 段落をあけてまとめることは できるでしょうか? 宜しくお願いいたします。

改行 ‘\n’ で区切れば大丈夫です。

(function() {
'use strict';

var fcodes = ['A','B','C'];
var events = [
'app.record.create.show','app.record.edit.show','app.record.index.edit.show'
];
fcodes.forEach(function(fc) {
events.push('app.record.create.change.' + fc);
events.push('app.record.edit.change.' + fc);
events.push('app.record.index.edit.change.' + fc);
});

kintone.events.on(events, function(event) {
var record = event.record;
record.D.value = fcodes.map(function(fc) {
return record[fc].value || '';
}).join('\n'');
return event;
});
})();

ありがとうございます:blush:
思い通りにできました!