DEV Community

Discussion on: Basic Functional Programming with Javascript

Collapse
 
jvanbruegge profile image
Jan van Brügge

Your "normal" function is in fact pure too: the data it is referencing might be not an argument, but is constant, it wont change making it pure too.

Collapse
 
marpme profile image
marpme (Marvin)

Thank you Jan, actually that’s true, yes. Maybe you can suggest a better example? I would be really curious if you got a better one in mind.