When I was asked this question, I was ignorant and my mind went blank. Of course, I didn't answer it correctly. I have always had a wrong understanding of forEach. Since it is much simpler than the original for loop, I once thought that it was a syntactic sugar created for the convenience of writing. It is also often used in business, but I have never considered the problems with this approach. forEach usage instructions Reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach?v=example arr.forEach(function callback(currentValue, index, array) { //your iterator }[, thisArg]);
There is a tip about the usage of break and return in forEach. The original text is as follows:
This means that it is wrong to use break and return in forEach. If you want to use break or return, please use every or some function. So back to the title, first of all, forEach cannot use any means to jump out of the loop, why? We know that forEach receives a function, which generally has two parameters, the first is the current element of the loop, and the second is the subscript corresponding to the element. Let's implement it manually: Array.prototype.myForEach = function (fn) { for (let i = 0; i < this.length; i++) { fn(this[i], i, this); } } I have no way of knowing whether forEach is really implemented this way, but the simple pseudocode above does meet the characteristics of forEach, and it is also obvious that you cannot jump out of the loop because you have no way to operate the real for loop body. Later, after consulting the documents, I found that the official definition of forEach was not the syntactic sugar I thought it was. Its standard statement is that forEach executes the function you provide once for each array element. At this point my thoughts gradually became clear, and the official documentation also has this paragraph:
Use throwing exception to jump out of foreach loop let arr = [0, 1, "stop", 3, 4]; try { arr.forEach(element => { if (element === "stop") { throw new Error("forEachBreak"); } console.log(element); // Output 0 1 and nothing after that }); } catch (e) { console.log(e.message); // forEachBreak }; Of course, when using try-catch wrapper, when the loop body is too large, the performance will decrease, which is unavoidable. Therefore, throwing an exception is not a silver bullet to solve the forEach problem. Let's go back to the pseudo code written at the beginning. We will optimize it and add the judgment of the passed function to the real for loop: Array.prototype.forEach = function (fn) { for (let i = 0; i < this.length; i++) { let ret = fn(this[i], i, this); if (typeof ret !== "undefined" && (ret == null || ret == false)) break; } } In this way, you can naturally jump out of the loop according to the return value: let arr = [0, 1, "stop", 3, 4]; arr.forEach(element => { if (element === 'stop') return false console.log(element); // Output 0 1 and nothing after that }); console.log('return means continue:'); arr.forEach(element => { if (element === 'stop') return console.log(element); // 0 1 3 4 }); The document also mentions that forEach requires a synchronous function, which means that unexpected results may occur when using asynchronous functions or Promises as callbacks, so forEach should be used with caution or not at all. Of course, this does not mean that we should always use simple for loops to complete everything in project development. We can use for..of.. when traversing arrays and for..in.. when traversing objects. The official also lists some other tool functions under the forEach document: Array.prototype.find() Array.prototype.findIndex() Array.prototype.map() Array.prototype.filter() Array.prototype.every() Array.prototype.some() Depending on different business scenarios, choose to use the corresponding tool function to handle business logic more effectively. As for forEach, I think I will just forget about it from now on. Summarize This is the end of this article about the JS interview question whether forEach can jump out of the loop. For more relevant content about JS forEach jumping out of the loop, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A Deep Dive into the MySQL InnoDB Storage Engine
Table of contents <template> <ul class=&...
What I have been learning recently involves knowl...
Scenario You need to authorize the tester to use ...
1. Overview The image in Docker is designed in la...
Preface: When we use Vue, we often use and write ...
Big pit, don't easily delete the version of P...
<br />From the birth of my first personal pa...
Table of contents Preface Installation and Usage ...
1. Basic structure of web page: XML/HTML CodeCopy...
<br />A year ago, there were no articles abo...
User and Group Management 1. Basic concepts of us...
Table of contents Understand the core concept of ...
Table of contents 1. Structural instructions Modu...
Table of contents Compare the empty string '&...
How to create a service and auto-start it in Ubun...