I am going to write a series of js skills, which is mainly to summarize various practical tips and tricks of js. This article mainly studies how to make our functions clearer. Object parameters using destructuringIf you want your function to take many arguments (more than two), you should use an object. On this basis, the required parameters can be extracted using deconstruction syntax. Normal writing const greet = (obj) => { return `${obj.greeting}, ${obj.firstName}${obj.lastName}`; } rewrite const greet = ({ greeting, firstName, lastName }) => { return `${greeting}, ${firstName}${lastName}`; } Using deconstruction will be more elegant, and we can also write less repetitive things, and the naming will be clearer. Naming callback functionsGood naming makes it easier to read code, and the same goes for naming callback functions. Normal writing const arr = [1, 2, 3].map(a => a * 2); rewrite const double = a => a * 2; const arr = [1, 2, 3].map(double); By naming them separately, it is easier to see the meaning of the code at a glance, as shown above: From the name, it is obvious that the callback function is used to double each element of the original array. Make conditionals descriptiveFor complex conditional judgments, we can use functions alone to express them, which will make the conditional statement more descriptive. Normal writing if (score === 100 || remainingPlayers === 1 || remainingPlayers === 0) { quitGame(); } rewrite const winnerExists = () => { return score === 100 || remainingPlayers === 1 || remainingPlayers === 0 } if (winnerExists()) { quitGame(); } As written originally, we have a long expression in parentheses, but it is hard to tell what it is judging. After rewriting, we put it in a named function, and we can roughly understand the meaning of the expression based on the name. Replace switch statements with Map or ObjectWhen your switch statement is long, it means you should simplify your code. Normal writing const getValue = (prop) => { switch (prop) { case 'a': { return 1; } case 'b': { return 2; } case 'c': { return 3; } } } const val = getValue('a'); Object rewrite const obj = { a: 1, b: 2, c: 3 } const val = obj['a']; We use switch to nest multiple blocks with multiple return statements just to get the return value for a given prop value, but we can achieve the same effect using just one object. Map Rewrite const map = new Map([['a', 1], ['b', 2], ['c', 3]]) const val = map.get('a') When using Map, the code is also much shorter. We pass an array where each item contains a key and a value. Then we just use the get method of the Map instance to get the value from the key. One benefit of Map over Object is that we can use other values like numbers, Booleans or objects as keys. Objects can only have strings or symbols as keys. Using Object.assign to set default propertiesNormal writing const menuConfig = { title: null, body: 'Bar' }; function createMenu(config) { config.title = config.title || 'Foo'; config.body = config.body || 'Bar'; } createMenu(menuConfig); rewrite const menuConfig = { title: 'Order', body: 'Send' }; function createMenu(config) { config = Object.assign({ title: 'Foo', body: 'Bar' }, config); // config : {title: "Order", body: "Bar"} // ... } createMenu(menuConfig); Delete duplicate code, merge similar functions, and delete deprecated codeBad writing var paging = function( currPage ){ if ( currPage <= 0 ) { currPage = 0; jump( currPage ); // jump }else if ( currPage >= totalPage ){ currPage = totalPage; jump( currPage ); // jump }else{ jump( currPage ); // jump } }; rewrite var paging = function( currPage ){ if ( currPage <= 0 ) { currPage = 0; }else if ( currPage >= totalPage ){ currPage = totalPage; } jump( currPage ); // separate the jump function }; Extraction functionIf a function is too long and requires several comments to make it easier to read, then it is necessary to refactor these functions. If there is a section of code in a function that can be isolated, it is best to put this code into another independent function. Example For example, in a function responsible for obtaining user information, we also need to print logs related to user information. var getUserInfo = function(){ ajax( 'http:// xxx.com/userInfo', function( data ){ console.log( 'userId: ' + data.userId ); console.log( 'userName: ' + data.userName ); console.log( 'nickName: ' + data.nickName ); }); }; rewrite We can encapsulate the print log statement in a separate function. var getUserInfo = function(){ ajax( 'http:// xxx.com/userInfo', function( data ){ printDetails( data ); }); }; var printDetails = function( data ){ console.log( 'userId: ' + data.userId ); console.log( 'userName: ' + data.userName ); console.log( 'nickName: ' + data.nickName ); }; Reference: JavaScript Refactoring Tips — Making Functions Clearer and Cleaner "JavaScript Design Patterns and Development Practices" SummarizeThis is the end of this article on how to make your JavaScript function more elegant. For more related content about elegant JavaScript functions, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to build pptpd service in Alibaba Cloud Ubuntu 16.04
>>: Detailed explanation of how to use amoeba to implement read-write separation of MySQL database
This article shares the specific code of jQuery t...
Placing a search box in the top menu bar is a com...
First: 4 ways to introduce CSS There are four way...
There are currently three ways to display the cen...
HTML+CSS+JS imitates win10 brightness adjustment ...
MySQL is a free relational database with a huge u...
In life, the Internet is everywhere. We can play ...
Table of contents 1. Encapsulate complex page dat...
Preface Backup is the basis of disaster recovery....
1. Log in to MySQL database mysql -u root -p View...
Table of contents 1. Overview 2. Django Project 3...
step Place the prepared static resource files in ...
Preface Whether it is Oracle or MySQL, the new fe...
Preface The company's developers used the rep...
I have been working on a project recently - Budou ...