Posts by Thiago Araujo • 11 points
2 posts
-
1
votes3
answers289
viewsA: Set NODE_ENV via command line on Windows
If you are running this from powershell (or an IDE that uses powershell as the terminal), you need to use the command $env:NODE_ENV="production" the old command set NODE_ENV=development &&…
node.jsanswered Thiago Araujo 11 -
0
votes2
answers89
viewsA: How to call a function within itself? Recursiveness
For you to perform a function with recursiveness just call it again inside the function SAVE HISTO() without the word Function in front, because Function serves for you to declare a function.…