diff --git a/base.css b/base.css index 3b72264..f981be6 100644 --- a/base.css +++ b/base.css @@ -8,6 +8,16 @@ body { font-family: "Lato", sans-serif; } +#moveTop{ + position: fixed; + right: 10px; + bottom:20px; + width: 20px; + height:20px; + + /*background: url(http://www.clker.com/cliparts/w/B/n/x/j/A/arrow-orange-md.png); */ +} + #wrapper { display: flex; justify-content: space-between; diff --git a/index.html b/index.html index 8c6878e..681b914 100644 --- a/index.html +++ b/index.html @@ -131,7 +131,7 @@
NOTE: Read this page very very carefully. The topic covered is the heart of Object Oriented Programming using JS.
- The local variables inside the funtions are recreated each time a function is called and these are independent of each other. Normally, in other languages when any function exits, the local variables are destroyed. JS has the ability to store functions as variables under some circumstances. Since functions can be stored in variable names like: + The local variables inside the functions are recreated each time a function is called and these are independent of each other. Normally, in other languages when any function exits, the local variables are destroyed. JS has the ability to store functions as variables under some circumstances. Since functions can be stored in variable names like: