reading-notes

Class 9

Back to home page

## Functional programming concepts

Q. What is functional programming?

Q. What is a pure function and how do we know if something is a pure function?

Q. What are the benefits of a pure function?

Q. What is immutability?

Q. What is Referential transparency?

Node js for beginners

Q. What is a module?

Q. What does the word ‘require’ do?

Q. How do we bring another module into the file the we are working in?

Q. What do we have to do to make a module available?

Things I want to know more about

How specific or vague can you be when exporting a function? can you export a specific part of a function or the whole function?