I have a controller with two functions:
JavaScript
x
7
1
module.exports.getQuestionnaire = function(application, req, res) {
2
}
3
4
module.exports.getClientDetails = function(application, req, res) {
5
}
6
7
I want to call the getQuestionnaire
function inside the getClientDetails
function.
Just calling getQuestionnaire()
does not work. How should I do this?
Advertisement
Answer
What I usually do:
JavaScript
1
10
10
1
const getQuestionnaire = () => {
2
//getClientDetails()
3
}
4
5
const getClientDetails = () => {
6
//getQuestionnaire()
7
}
8
9
module.exports = {getQuestionnaire, getClientDetails}
10