What is a generator?A generator is some code that runs inside a function.
This "return" is not a traditional return from a function. So it is given a special name - yield. Generator syntax varies from language to language. Javascript's generator syntax is similar to PHP's, but it's different enough that if you expect them to work the same, you'll end up being very confused. In javascript, if you want to use a generator, you need to:
We start with this simple program and follow each of the steps below: // File: sample-program.js function *createGenerator() { for(let i=0;i<20;i++) { yield i } } const generator = createGenerator() console.log(generator.next()) console.log(generator.next()) If you run this code, you will get the following output:
Let me explain how the program works. Generator FunctionsFirst, there is the definition of the generator function in the code: function* createGenerator() { for(let i=0;i<20;i++) { yield i } } The * after function tells JavaScript that this is a generator function. The following are all valid definitions of generator functions. function*createGenerator function* createGenerator function *createGenerator The * is not part of the function name. Instead, the function* notation defines a generator. Calling the generator functionAfter defining the generator function, we call it a function of some other name. // NOTE: When called, there is no *. * is not part of the function name // `function *` is the symbol used to define a generator function const generator = createGenerator() But remember: the createGenerator function has no return value. This is because generator functions don't have a traditional return value. In contrast, when you call a generator function directly, it always returns an instantiated Generator object. This generator object has a next method. Calling next will run the code inside the generator function. function* createGenerator() { for(let i=0;i<20;i++) { yield i } } This is important enough to call it again. Calling a generator function directly does not run any code in the generator function. Instead, a generator object is created. It calls next on the generator object, which in turn calls the code in the generator function. The first time next is called on a generator object, the code inside runs until a yield statement is encountered. Once a yield is reached, javascript will pause execution of that code, and next will return (give you, or yield) an object containing the value in the yield line. When you call next a second time (or third, fourth, or more times), the code will be unpaused and continue running (where it left off on the last call). The variable (i in this case) will retain its value. When the code reaches another yield statement, the function pauses again and returns an object containing the yielded value. That's why we call next twice. console.log(generator.next()) console.log(generator.next()) You will get the following output:
Once the code in the generator function has finished executing, any future calls to next will return an object with a value of undefined and done set to true. { value: undefined, done: true } Generators and loopsAlthough it is possible to call next manually on a generator object, we mainly want to use it in a loop. Take a look at this slightly modified program. // File: sample-program.js @highlightsyntax@jscript function *createGenerator() { for(let i=0;i<5;i++) { yield i } } const generator = createGenerator() for(const value of generator) { console.log(value) } When a generator object is used in a for...of loop, each time through the loop next is called on the generator object and the variable (value above) is filled with the produced value. Running the program will output the following:
In the next article, we'll take a closer look at the for ... of loop and explore how JavaScript has a built-in way to loop over any object in JavaScript. SummarizeThis is the end of this article about Javascript Generator. For more relevant Javascript Generator content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Friendly Alternatives to Find Tool in Linux
>>: Detailed explanation of performance monitoring of MySQL server using Prometheus and Grafana
Table of contents Pull the rocketmq image Create ...
Table of contents 1. Introduction 2. Prepare a pr...
Table of contents Batch copy copyWithin() Fill ar...
<template> <div class="app-containe...
Recently, the Vue project needs to refresh the da...
Caused by: java.sql.SQLException: Incorrect strin...
Table of contents Pull the image Run the image (g...
Note: This method is only applicable to webkit-ba...
Background of the accident: A few days ago, due t...
<br />Words are the inevitable product of hu...
Table of contents 1. Log related services 2. Comm...
This article mainly introduces the process analys...
Preface This article introduces the fifth questio...
js array is probably familiar to everyone, becaus...
Table of contents specification a. The page file ...