Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How js merges expressions

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how js merges expressions. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Merge expression

If the function of five sentences of code can be realized with one sentence of code, the execution efficiency of one sentence of code will be higher, and the readability may be better.

(1) replace simple if-else with ternary operator

Such as the getPrice function above:

Function getPrice (count) {if (count)

< 0) return -1; else return count * 100; } 可以改成: function getPrice(count){ return count < 0 ? return -1 : count * 100; } 这个比写一个 if-else 看起来清爽多了。当然,如果你写了 if-else,压缩工具也会帮你把它改三目运算符的形式: function getPrice(e){return 0>

EBay Mutual 1PUR 100mm}

(2) Company, etc.

The expression uses the assignment operation to return the assigned value, and the order of execution is from right to left, as follows:

Overtime = favhouse = listingDetail = {...}

Sometimes you see people write like this:

Var age = 0; if ((age = + form.age.value) > = 18) {console.log ("you are an adult");} else {consoe.log ("kids, you still have" + (18-age) + "coming of age");}

Also use the assignment expression to return a value, assign a value in if while judging by its return value, and then there is already a value in else. The + sign above converts the string to an integer.

(3) self-increasing

Using self-increment can also simplify the code. As follows, every time a message is sent, localMsgId increments by 1:

ChatService.sendMessage (localMsgId++, msgContent): thank you for reading! This is the end of the article on "how js merges expressions". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report