I have a concern about local variables in functions,
I am trying my make my app efficient as much as I could,
If I make a lot of local variables in a function, after the function is executed to they get null automatically or should I clean them out manually ?
and the same with functions should I use local functions if am not gonna use them outside the file, or it won’t matter ?
What advice can you give me to make an app efficient as possible.