You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vartoUpperCase=function(x){returnx.toUpperCase();};varexclaim=function(x){returnx+'!';};varshout=compose(exclaim,toUpperCase);shout("send in the clowns");
函数饲养
这就是
组合
(compose)f
和g
都是函数,x
是在他们之间通过"管道"传输的值组合
看起来像是在饲养函数。你就是饲养员,选择两个有特点又遭你喜欢的函数,让它们结合,产下一个崭新的函数。组合的用法如下:应用compose函数
假定有这样一个需求:对一个给定的数字四舍五入求值,数字为字符型。
常规实现:
用compose函数改写:
The text was updated successfully, but these errors were encountered: