Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function foo() {
window['bar'] = 'wibble';
}
function wibble() {
abc = 1; // this will be global
var def = 2; // this will be local
}
if (typeof(window['globalVariableName']) == 'undefined') {
// it's same to use 'globalVariableName' now...
}