Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/rosetta-code/accumulator-factory.md

906 B
Raw Blame History

id, title, challengeType, videoUrl
id title challengeType videoUrl
594810f028c0303b75339ace 蓄能器工厂 5

--description--

创建一个带有单个(数字)参数的函数,并返回另一个作为累加器的函数。返回的累加器函数又接受一个数字参数,并返回到目前为止传递给该累加器的所有数值的总和(包括创建累加器时传递的初始值)。

规则:

不要使用全局变量。

暗示:

闭包可以保存外部状态。

--hints--

accumulator是一个功能。

assert(typeof accumulator === 'function');

accumulator(0)应该返回一个函数。

assert(typeof accumulator(0) === 'function');

accumulator(0)(2)应该返回一个数字。

assert(typeof accumulator(0)(2) === 'number');

传递值3-4,1.5和5应返回5.5。

assert(testFn(5) === 5.5);

--solutions--