Skip to content
Akin C edited this page Apr 15, 2018 · 8 revisions

Welcome to the Javascript-closures-fact-one- wiki!

This repository is part of a larger project!

◀️ PREVIOUS PROJECT| NEXT PROJECT ▶️


Closures are not supported in all programming languages, but they are in Javascript. It seems to understand them, it is necessary to look at three facts about closures.

This is the first one and the others can be found here:

Fact one says that a variable which is defined outside a current function can be refered and ultimately used. For example

var anyVariable = 0;

function anyFunction()
{
    anyVariable = 1234;
}

console.log(anyVariable);//Value changed to 1234

Content

The user interaction part should look like the content as seen below by starting "index.html" in a web browser.

ERROR: No image found!

The essential part of the program relevant to fact one is found in "closures.js".

The colored areas are just for a better readability in the wiki and are not part of the content. To use the project just download the files and execute "index.html". Note that all files should be placed in the same folder so that the functionality of the code is guaranteed.

Clone this wiki locally