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

javascript - Assignment to property of function parameter (no-param-reassign) - Stack Overflow

programmeradmin0浏览0评论

I have this function and while I have this working nicely, I'm getting ESLint error saying

57:5  error  Assignment to property of function parameter 'result'  no-param-reassign   
66:5  error  Assignment to property of function parameter 'result'  no-param-reassign

I'm unsure how to correctly resolve

export const fn = article => article.categoryValueDtoSet.reduce((result, item) => {
  if (item.language) {
    const language = item.language.languageValue;
    const category = item.categoryValue;
    result[language] = category;
  }
  return result;
}, { it: undefined, de: undefined, en: undefined );

I did some research and it seems I need to use Object.assign and I tried it, but probably did it wrong. How should I write my function, that I can resolve my problem?

I have this function and while I have this working nicely, I'm getting ESLint error saying

57:5  error  Assignment to property of function parameter 'result'  no-param-reassign   
66:5  error  Assignment to property of function parameter 'result'  no-param-reassign

I'm unsure how to correctly resolve

export const fn = article => article.categoryValueDtoSet.reduce((result, item) => {
  if (item.language) {
    const language = item.language.languageValue;
    const category = item.categoryValue;
    result[language] = category;
  }
  return result;
}, { it: undefined, de: undefined, en: undefined );

I did some research and it seems I need to use Object.assign and I tried it, but probably did it wrong. How should I write my function, that I can resolve my problem?

Share Improve this question edited Jun 18, 2020 at 6:51 VLAZ 29.1k9 gold badges63 silver badges84 bronze badges asked Jun 18, 2020 at 6:47 dinmepdinmep 1271 gold badge1 silver badge7 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

This is a mon ESLint issue that appears frequently on old codebase. You have modified the result variable which was passed as parameter. This behavior is prohibited by the rule.

To resolve it, copy the argument to a temporary variable and work on it instead:

export const fn = article => article.categoryValueDtoSet.reduce((res, item) => {
    const result = {...res}; // if result is object
    // const result = [...res]; // if result is array
    // Rest of your code can work without change
}

Note: The object spread operator is sugar syntax for Object.assign(). Both it and the array copy is not deep here for simplicity sake and could cause side effects because you are still accessing the original individual elements of the source object or array. Prefer to use a deep copy instead.

发布评论

评论列表(0)

  1. 暂无评论