Skip to content

Tag: return

Variable of function always returns undefined

The idea: I want to return a variable from a function and then output it using console.log(). The problem: I can’t just use return result because then nothing is returned. I don`t really know how else to return the variable. I have already looked at SO posts like this one, however I probably lack suitab…

Recursive function returns undefined

I have a function which calculates taxes. I can’t see why it doesn’t stop the recursion. Answer In this arm of your function: you are not returning a value from the function or setting returnTax. When you don’t return anything, the return value is undefined. Perhaps, you want this: