“JavaScript -Generatorfunktion” Code-Antworten

JavaScript -Generatorfunktion

function* idMaker() {
  var index = 0;
  while (true)
    yield index++;
}

var gen = idMaker();

console.log(gen.next().value); // 0
console.log(gen.next().value); // 1
console.log(gen.next().value); // 2
console.log(gen.next().value); // 3
// ...
TC5550

Generatorfunktion JavaScript


function* expandSpan(xStart, xLen, yStart, yLen) {
    const xEnd = xStart + xLen;
    const yEnd = yStart + yLen;
    for (let x = xStart; x < xEnd; ++x) {
         for (let y = yStart; y < yEnd; ++y) {
            yield {x, y};
        }
    }
} 


//this is code from my mario game I dont think this code is functional
Impossible Ibis

Erstellen Sie JavaScript -Generatoren

// define a generator function
function* generator_function() {
   ... .. ...
}

// creating a generator
const generator_obj = generator_function();
SAMER SAEID

Ähnliche Antworten wie “JavaScript -Generatorfunktion”

Fragen ähnlich wie “JavaScript -Generatorfunktion”

Weitere verwandte Antworten zu “JavaScript -Generatorfunktion” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen