nodejs how to set global variable from inside function code example
Example 1: node.js save global variable
global.number = 5;
Example 2: create global variable inside function JavaScript
<script>
function foo() {
window.yourGlobalVariable = ...;
}
</script>