“Neue Funktion in JavaScript” Code-Antworten

Neue Funktion 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();
Outlander

Neue Funktion JavaScript

var add = function(num1, num2) {
  return num1 + num2
}
Curious Caribou

Ähnliche Antworten wie “Neue Funktion in JavaScript”

Fragen ähnlich wie “Neue Funktion in JavaScript”

Weitere verwandte Antworten zu “Neue Funktion in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen