new function meaning js code example

Example 1: how do you create a function js?

//(don't type behind the// type function to after that name it//
function name() {
  (name)=name
  console.log(name)
};
//{ symbol is used o group together code but you must create n index/array of 2(array3)//

Example 2: new function in javascript

// NOTE : Function defined using (Function CONSTRUCTOR) does not 
//        inherits any scope other than the GLOBAL SCOPE
 
var x=7;
function A(){
  var x=70;
   function B(){
     console.log(x);                // 70
   }
     let C = function(){
      console.log(x);              // 70
     }
	 		let D = new Function('console.log(x)'); // user caps F

	B();  // 70
    C(); // 70
    D();// 7 - Inherits always the GLOBAL scope
};

A();