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

Functional-style JavaScript: good practice to avoid argument mutation? - Stack Overflow

programmeradmin1浏览0评论

This is a rather general question. Functional-style programming promotes the idea that a program is about transforming data through functions, and that mutation should be avoided (except possibly within a function, seen as a basic unit of abstraction).

But in this program:

function foo (bar) {
  bar.k1 = "bananas";
  return bar;
}

var o = { k1: "apples", k2: "oranges"};
var p = foo(o);

the external variable o is mutated within foo because bar is a reference to o, and, in the end, o === p (they reference the same object). But the functional paradigm would rather expect p to be fresh data.

The obvious solution is to clone the argument (e. g. using underscore/lodash's _.clone):

function foo (_bar) {
  var bar = _.clone(_bar);
  bar.k1 = "bananas";
  return bar;
}

But I wonder if this is the correct way to think about this problem. In a FP perspective, would you consider it a good practice to clone the objects passed as arguments if they will be mutated? (I am aware that not all objects can be cloned easily, if at all, but let's stick to simple cases). Your thoughts?

This is a rather general question. Functional-style programming promotes the idea that a program is about transforming data through functions, and that mutation should be avoided (except possibly within a function, seen as a basic unit of abstraction).

But in this program:

function foo (bar) {
  bar.k1 = "bananas";
  return bar;
}

var o = { k1: "apples", k2: "oranges"};
var p = foo(o);

the external variable o is mutated within foo because bar is a reference to o, and, in the end, o === p (they reference the same object). But the functional paradigm would rather expect p to be fresh data.

The obvious solution is to clone the argument (e. g. using underscore/lodash's _.clone):

function foo (_bar) {
  var bar = _.clone(_bar);
  bar.k1 = "bananas";
  return bar;
}

But I wonder if this is the correct way to think about this problem. In a FP perspective, would you consider it a good practice to clone the objects passed as arguments if they will be mutated? (I am aware that not all objects can be cloned easily, if at all, but let's stick to simple cases). Your thoughts?

Share Improve this question edited Mar 2, 2015 at 8:32 Nicolas Le Thierry d'Ennequin asked Mar 1, 2015 at 10:10 Nicolas Le Thierry d'EnnequinNicolas Le Thierry d'Ennequin 6,1645 gold badges40 silver badges57 bronze badges 4
  • 1 My 2 cents is to write code that works with the language and not get hung up on programming techniques. Functional programming is fine and dandy, but if you don't need a new object there's no reason to return one, when you can just change the original. – adeneo Commented Mar 1, 2015 at 10:13
  • I need to return the object if I want to do something like: someOtherFunction(foo(o)). What you probably mean is that it doesn't matter if this is a fresh object or a reference to the external object. – Nicolas Le Thierry d'Ennequin Commented Mar 1, 2015 at 10:24
  • Wether it matters or not is up to you? Do you need the original object unchanged, if not there's no reason to create a new one, just return the one passed in to the function after it's modified. – adeneo Commented Mar 1, 2015 at 10:25
  • 4 I think mutating arguments is even despised in non-functional programming, and always needs to be documented/municated properly – Bergi Commented Mar 1, 2015 at 11:40
Add a ment  | 

1 Answer 1

Reset to default 9

Ideally the function should return a brand new object everytime it is called. Obviously for performance reasons it is not great, this is why persistent data structures exist. There are a few libraries for JS; immutable-js is arguably the most popular.

Otherwise mutating the object is fine, and in JS it is mon practice, since not every project would immediately benefit from persistent data structures, plus the weight of the library.

Also note that in JavaScript everything is passed by value, but values themselves can hold references.

发布评论

评论列表(0)

  1. 暂无评论