“Funktion als Objekt” Code-Antworten

Funktion innerhalb von Objekt JavaScript

var obj = {
  func: function(a, b) {
    return a * b;
  }
};

obj.func(3, 6); // 18
TC5550

Funktion als Objekt

// Function declaration.
function showFavoriteIceCream() {
  const favIceCream = 'chocolate';

  console.log(`My favorite ice cream is ${favIceCream}`);
}

// Let's assign a property.
showFavoriteIceCream.flavours = ['chocolate', 'vanilla', 'strawberry'];

// Let's log the showFavoriteIceCream function.
console.log(showFavoriteIceCream);

// Log
// { [Function: showFavoriteIceCream]
// flavours: [ 'chocolate', 'vanilla', 'strawberry' ] } -> property assigned
Repulsive Raven

Ähnliche Antworten wie “Funktion als Objekt”

Fragen ähnlich wie “Funktion als Objekt”

Weitere verwandte Antworten zu “Funktion als Objekt” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen