Global variables are a bad idea. They should only be used when absolutely necessary. There's no RAM benefit or anything like that.
What w3schools is talking about is The Horror of Implicit Globals. Consider this function:
function foo() {
var x;
x = 5;
y = 6;
return x + y;
}
When you run that function, you suddenly, out of nowhere, have a global variable called y. This is because the function assigns to y, but y isn't declared anywhere. Through the mechanics of the scope chain in JavaScript, this ends up being an implicit assignment to a property on the window object. E.g., assuming y isn't declared in any containing scope, it's exactly the same as this:
function foo() {
var x;
x = 5;
window.y = 6;
return x + window.y;
}
The window object contains all globals, both explicitly and implicitly defined ones. You can imagine there are a lot of global variables being created by people's code by accident.
The window object is already very, very cluttered. Unless you're writing a library or a page that has to use multiple script files, there's no reason to further clutter up the window object. Just define yourself a nice scoping function and put your symbols in it:
(function() {
var your, symbols, here, if_they_need, to_be_shared, amongst_functions;
function doSomething() {
}
function doSomethingElse() {
}
})();
And if you do that, you might want to invoke the new strict mode of JavaScript, added in the 5th edition specification:
(function() {
"use strict";
var your, symbols, here, if_they_need, to_be_shared, amongst_functions;
function doSomething() {
}
function doSomethingElse() {
}
})();
...which has the advantage of (amongst other things) making the foo function's implicit creation of a global variable a syntax error.