javascript 拉姆达系列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 拉姆达系列相关的知识,希望对你有一定的参考价值。

import {prop, compose, apply, defaultTo, juxt} from 'ramda'

const player = {
	id: 1,
	name: 'Bnaya',
	file: {
		img: 'http://foo.bar/bnaya-zil.png'
	}
}

const getFile = prop('file')
const getThumb = prop('thumb')
const getImg = prop('img')
const getFileContent = juxt([getImg, getThumb])
const reduceFileContent = apply(defaultTo)
const getPlayerPicture = compose(reduceFileContent, getFileContent, getFile)

const playerPicture = getPlayerPicture(player) // returns: 'http://foo.bar/bnaya-zil.png'

以上是关于javascript 拉姆达系列的主要内容,如果未能解决你的问题,请参考以下文章

javascript 拉姆达的东西

javascript 拉姆达的例子

C# 拉姆达表达式相关,看一下两行代码的意思

python 拉姆达

拉姆达表达式组合

java 拉姆达 lamdba get