您现在的位置是:课程教程文章

js柯里化函数的好处

2023-12-14 20:22课程教程文章 人已围观

好处说明

1、可以把函数式编程变得简洁,没有冗余。

2、尽管有多个参数,仍然可以保留数学函数的定义。

3、可以将函数作为返回值输出,提前返回。

实例

match(/r/g,'helloworld');//['r']

consthasLetterR=match(/r/g);//x=>x.match(/r/g)
hasLetterR('helloworld');//['r']
hasLetterR('justjandsandtetc');//null
filter(hasLetterR,['rockandroll','smoothjazz']);//['rockandroll']

constremoveStringsWithoutRs=filter(hasLetterR);//xs=>xs.filter(x=>x.match(/r/g))
removeStringsWithoutRs(['rockandroll','smoothjazz','drumcircle']);//['rockandroll','drumcircle']
constnoVowels=replace(/[aeiou]/ig);//(r,x)=>x.replace(/[aeiou]/ig,r)
constcensored=noVowels('*');//x=>x.replace(/[aeiou]/ig,'*')
censored('ChocolateRain');//'Ch*c*l*t*R**n'

以上就是js柯里化函数的好处,希望对大家有所帮助。更多js学习指路:js教程

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。

课程教程:js柯里化函数的好处

上一篇:js中repeat()的使用

下一篇:没有了

站点信息

  • 文章统计篇文章