codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Learn JavaScript functional programming from Avengers

Radhakrishnan Kanagaraj
codeburst
Published in
5 min readDec 10, 2019

--

Pure Functions

//lets assume she has three emotions
const emotions= ['cool', 'angry', 'sad']
function gamora(emotion){
let time= new Date().getFullYear()
let gomuraBehavior= `In ${time}, gamora is ${emotion}`return gomuraBehavior}gamora(emotions[0]) //"In 2019, gamora's emotion - cool"
gamora(emotions[1]) //"In 2019, gamora's emotion - angry"
gamora(emotions[2]) //"In 2019, gamora's emotion - sad"
function gamora(time, emotion){const gomuraBehaviour= `In ${time}, gamora's emotion - ${emotion}`return gomuraBehaviour}const diffEmotions= {2019:'cool',2014:'sad',2009:'angry'}const keys = Object.keys(diffEmotions)gamora(keys[0], diffEmotions[keys[0]]) //In 2009,gamora's emotion- angrygamora(keys[1], diffEmotions[keys[1]]) //In 2014,gamora's emotion- sadgamora(keys[2], diffEmotions[keys[2]]) //In 2019,gamora's emotion- cool

Immutability

//Below is the world object after Thanos destroyed half of its //populationconst world = {population: 'halved', 
result:'thanos-won'}
world.population='restored'world.result='avengers-won'
Console.log(world)//{population: "restored", result: "avengers-won"}
const world = {population: 'halved', 
result:'thanos-won'}
//Thanos freezes the world
Object.freeze(world)
//Avengers trying to restore
world.population= 'restored' //Throws error in strict mode
console.log(world)
//{population: 'halved', result:'thanos-won'}
//Avengers failed to restore the world :(

Shared state

//thanosBasket holds info whether a particular stone is in his //basket or not. const thanosBasket={ Space_Stone:'NO', Reality_Stone:'NO', Power_Stone:'NO', Mind_Stone:'NO', Time_Stone: 'NO', Soul_Stone:'NO'}//We will Create functions which will set the stone state to //'YES'when it is added to basketconst addSpaceStone = (basket)=>({...basket, Space_Stone:'Yes'})
const addRealityStone = (basket)=>({...basket, Reality_Stone:'Yes'})const addPowerStone = (basket)=>({...basket, Power_Stone:'Yes'})const addMindStone = (basket)=>({...basket, Mind_Stone:'Yes'})const addTimeStone = (basket)=>({...basket, Time_Stone:'Yes'})const addSoulStone = (basket)=>({...basket, Soul_Stone:'Yes'})//Once Thanos has three stones- Space, Reality and Power - his basket will look like belowaddSpaceStone(addRealityStone(addPowerStone(thanosBasket)))//{Space_Stone: "Yes", Reality_Stone: "Yes", Power_Stone: "Yes", Mind_Stone: "NO", Time_Stone: "NO", Soul_Stone: "NO"}

Referential Transparency

function haveSixStones(){return 'absolutePower'}
console.log(haveSixStones()) //absolutePower
console.log('absolutePower') //absolutePower
addSpaceStone(addRealityStone(addPowerStone(thanosBasket)))addPowerStone(addRealityStone(addSpaceStone(thanosBasket)))addRealityStone(addPowerStone(addSpaceStone(thanosBasket)))//all the above three will give the same result.//{Space_Stone: "Yes", Reality_Stone: "Yes", Power_Stone: "Yes", Mind_Stone: "NO", Time_Stone: "NO", Soul_Stone: "NO"}

--

--

Responses (3)