If I have a global variable, and I change the variable's value inside a function, will the change be reflected outside of the function?
e.g.
var blaah="blaah";
function myFunction(){
blaah="blaah blaah";
}
console.log(blaah);
Will the output of console.log();
be "blaah", or "blaah blaah".