Home Web Front-end JS Tutorial Reasons not to use JS anonymous functions

Reasons not to use JS anonymous functions

Jan 16, 2018 am 11:24 AM
javascript function

This article analyzes the three major reasons not to use jsanonymous functions. The function of JS anonymous functions is to avoid the pollution of global variables and the conflict of function names. About js anonymous Please refer to this article for the three major reasons for functions.

The basic form of anonymous functions is(function(){...})();

Before The parentheses contain the function body, and the following parentheses are to pass parameters to the anonymous function and execute it immediately.

The function of the anonymous function is to avoid the pollution of global variables and the conflict of function names

No matter Whenever you read code, you must be aware of anonymous functions. Sometimes they are called lambdas, sometimes anonymous functions, either way I think they are difficult to use.

If you don’t know what an anonymous function is, here’s a quote:

An anonymous function is a function that is dynamically declared at runtime. They are called anonymous functions because unlike ordinary functions, they do not have function names. — Helen Emerson, Helenephant.com

The form of an anonymous function is as follows:

1

2

3

function () { ... code ... }

OR

(args) => { ... code .. }

Copy after login

I am trying to make everyone understand today the idea of ​​​​generally only using anonymous functions when absolutely necessary. Anonymous functions should not be preferred and should be used only if the reasons are known. When you understand this idea, your code will become cleaner, easier to maintain, and easier to track bugs. Let’s start with three reasons to avoid using anonymous functions: When you write code, no matter how good you are at typing code, you will always encounter errors. Sometimes these errors are easy to detect, sometimes not.

If you know where these errors come from, then the errors can be easily detected. To find errors, we use this tool called a stack trace. If you don't know about stack traces, Google has a great introduction.

Suppose there is a very simple project now:

1

2

3

4

5

6

7

function start () {

 (function middle () {

 (function end () {

  console.lg('test');

 })()

 })()

}

Copy after login


There is a very stupid mistake in the above code, a spelling mistake (console.log). In a small project, this spelling error is not a big problem. If this is a small section of a very large project with many modules, the problem is huge. Assuming you didn't make this stupid mistake, the new junior engineer will commit it to the code base before he goes on vacation!

Now, we must track it down. Using our carefully named function, we get the following stack trace:

Thanks for naming your functions, junior developers! Now we can easily track down the bug.

But... once we solved this problem, we found that there was another bug. This time it was from a more senior developer. This person knows about lambdas

As a result they stumble upon a bug and it's our job to track it down.


The following is the code:

1

2

3

4

5

6

7

(function () {

 (function () {

 (function () {

  console.lg('test');

 })();

 })();

})();

Copy after login

Not surprisingly, this developer also forgot how to spell console.log! This is too much of a coincidence! It's a shame that none of them named their functions.

So what will the console output?

Well, we at least still have line numbers, right? In this example, it looks like we have about 7 lines of code. What happens if we deal with a large block of code? Like ten thousand lines of code? What should we do if the span of line numbers is so large? If there is a code

map

file after the code is folded, then is the rendering of line numbers useless at all? I think the answer to these questions is quite simple. The answer is: thinking about these things will make your whole day miserable.

ReadabilityHey, I heard that you still don’t believe it. You're still attached to your anonymous function, and the bug has never occurred. Well I have to apologize to you for thinking your code is perfect. Let's take a look at this!

Look at the following two pieces of code:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

function initiate (arguments) {

 return new Promise((resolve, reject) => {

 try {

  if (arguments) {

   return resolve(true);

  }

  return resolve(false);

 } catch (e) {

  reject(e);

 }

 });

}

initiate(true)

 .then(res => {

  if (res) {

   doSomethingElse();

  } else {

   doSomething();

  }

 ).catch(e => {

   logError(e.message);

   restartApp();

   }

 );

Copy after login

This is a very abnormal example, but I believe you already understand what I am going to say. Our method returns a promise, and we use this promise

Object

/method to handle different possible responses. You may think that these few pieces of code are not difficult to read, but I think they can be better!

What would happen if we removed all anonymous functions?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

function initiate (arguments) {

 return new Promise(checkForArguments);

}

function checkForArguments (resolve, reject) {

 try {

 if (arguments) {

  return resolve(true);

 }

 return resolve(false);

 } catch (e) {

 reject(e);

 }

}

function evaluateRes (res) {

 if (res) {

 doSomethingElse();

 } else {

 doSomething();

 }

}

function handleError (e) {

 logError(e.message);

 restartApp();

}

initiate(true)

 .then(evaluateRes)

 .catch(handleError);

Copy after login

Okay, let’s be clear: this part of the code is longer, but I think it’s more than just more readable! Our carefully named functions are different from anonymous functions in that we know what their function is as soon as we see their name. This avoids obstacles when evaluating code.

This also helps to clarify the relationship. Instead of creating a method, passing it in, and then running the logic, in the second example the arguments are given to then and catch just points to the function where everything happens.

There’s nothing more I can say to you about being more readable. But maybe if you're not convinced yet, I can try one final argument.

related suggestion:

Template method singleton in javascript

Detailed explanation of javascript to determine whether the user has operated the page

Use JavaScript to implement a small program 99 multiplication table

The above is the detailed content of Reasons not to use JS anonymous functions. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Tips for dynamically creating new functions in golang functions Tips for dynamically creating new functions in golang functions Apr 25, 2024 pm 02:39 PM

Go language provides two dynamic function creation technologies: closure and reflection. closures allow access to variables within the closure scope, and reflection can create new functions using the FuncOf function. These technologies are useful in customizing HTTP routers, implementing highly customizable systems, and building pluggable components.

Considerations for parameter order in C++ function naming Considerations for parameter order in C++ function naming Apr 24, 2024 pm 04:21 PM

In C++ function naming, it is crucial to consider parameter order to improve readability, reduce errors, and facilitate refactoring. Common parameter order conventions include: action-object, object-action, semantic meaning, and standard library compliance. The optimal order depends on the purpose of the function, parameter types, potential confusion, and language conventions.

How to write efficient and maintainable functions in Java? How to write efficient and maintainable functions in Java? Apr 24, 2024 am 11:33 AM

The key to writing efficient and maintainable Java functions is: keep it simple. Use meaningful naming. Handle special situations. Use appropriate visibility.

Complete collection of excel function formulas Complete collection of excel function formulas May 07, 2024 pm 12:04 PM

1. The SUM function is used to sum the numbers in a column or a group of cells, for example: =SUM(A1:J10). 2. The AVERAGE function is used to calculate the average of the numbers in a column or a group of cells, for example: =AVERAGE(A1:A10). 3. COUNT function, used to count the number of numbers or text in a column or a group of cells, for example: =COUNT(A1:A10) 4. IF function, used to make logical judgments based on specified conditions and return the corresponding result.

Comparison of the advantages and disadvantages of C++ function default parameters and variable parameters Comparison of the advantages and disadvantages of C++ function default parameters and variable parameters Apr 21, 2024 am 10:21 AM

The advantages of default parameters in C++ functions include simplifying calls, enhancing readability, and avoiding errors. The disadvantages are limited flexibility and naming restrictions. Advantages of variadic parameters include unlimited flexibility and dynamic binding. Disadvantages include greater complexity, implicit type conversions, and difficulty in debugging.

What are the benefits of C++ functions returning reference types? What are the benefits of C++ functions returning reference types? Apr 20, 2024 pm 09:12 PM

The benefits of functions returning reference types in C++ include: Performance improvements: Passing by reference avoids object copying, thus saving memory and time. Direct modification: The caller can directly modify the returned reference object without reassigning it. Code simplicity: Passing by reference simplifies the code and requires no additional assignment operations.

What is the difference between custom PHP functions and predefined functions? What is the difference between custom PHP functions and predefined functions? Apr 22, 2024 pm 02:21 PM

The difference between custom PHP functions and predefined functions is: Scope: Custom functions are limited to the scope of their definition, while predefined functions are accessible throughout the script. How to define: Custom functions are defined using the function keyword, while predefined functions are defined by the PHP kernel. Parameter passing: Custom functions receive parameters, while predefined functions may not require parameters. Extensibility: Custom functions can be created as needed, while predefined functions are built-in and cannot be modified.

C++ Function Exception Advanced: Customized Error Handling C++ Function Exception Advanced: Customized Error Handling May 01, 2024 pm 06:39 PM

Exception handling in C++ can be enhanced through custom exception classes that provide specific error messages, contextual information, and perform custom actions based on the error type. Define an exception class inherited from std::exception to provide specific error information. Use the throw keyword to throw a custom exception. Use dynamic_cast in a try-catch block to convert the caught exception to a custom exception type. In the actual case, the open_file function throws a FileNotFoundException exception. Catching and handling the exception can provide a more specific error message.

See all articles