const getEntryPoint = () => {
const jsFiles = [ 'another_index.js', 'article.js', 'blog.js', 'index.js' ]
const entry = {}
jsFiles.forEach(file => {
return {
...entry,
[file]: file
}
})
return entry
}
console.log(getEntryPoint()); // возвращается пустой объект
{
'another_index.js': 'another_index.js',
'article.js'': 'article.js'',
'blog.js': 'blog.js'
'index.js': 'index.js'
}
{}