| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | 
							- (function(){
 
-     var result = 1,
 
-         term1 = 0,
 
-         term2 = 1,
 
-         i = 1;
 
-     while(i < 10)
 
-     {
 
-         var test = 10;
 
-         result = term1 + term2;
 
-         console.log(result);
 
-         term1 = term2;
 
-         term2 = result;
 
-         i++;
 
-     }
 
-     console.log(test);
 
-     var test = function (test) {
 
-         console.log(test);
 
-         if (true) {
 
-             var test = 5
 
-         }
 
-         return test;
 
-     }
 
-     console.log(test(1));
 
-     function test2 (abc) {
 
-         function test1 () {
 
-             console.log('inside', abc.item);
 
-         }
 
-         console.log('тест', abc);
 
-         var abc = {};
 
-         return abc.item = 15, test1();
 
-     };
 
-     var regexptest = /version\/(\d+)/i;
 
-     console.log(regexptest);
 
-     test2(22);
 
-     console.log(105.4);
 
-     console.log(true, false);
 
-     try {
 
-     } catch (error) {
 
-         console.log(error);
 
-     }
 
- })();
 
 
  |