PrefaceIt has been a while since TypeScript 3.7 was officially released. During this period, I am migrating my current project to TypeScript, so I will pay special attention to every release. As for the new features included in 3.7, it is actually a relatively small release compared to the previous releases, but the several features included in it will bring significant improvements to the code quality itself. Optional ChainingThe first feature is the support for the optional chaining operator, which should be translated as the optional chaining operator. Of course, I still think this translation is a bit strange, so let’s just use English for now. This feature is first of all a new feature included in es2019. For the feature itself, those who are interested can refer to here. Since TypeScript is a superset of JavaScript, it is expected that this feature will be implemented in advance. The usage is roughly as follows: a?.b(); is equivalent to: if(a) ab(); // or a && ab() If it is multi-layer nesting, for example, b is also an object, and you want to continue calling c(), you can do it like this: a?.b?.c() But even if it is written like this, it is not safe, because the b in b() may also be a null value, and an exception will be thrown if it is called directly. For absolute safety, you can write: a?.b?.(); It is worth noting that we must have a correct understanding of the meaning of optional here. Optional means that it is modified by ? in the type declaration, indicating that a type contains a property that can be nullable. What this means is that ?. will not be called on properties that do not conform to the type declaration itself, for example: interface A {} const a: A = {}; a?.b?.(); // Property 'b' does not exist on type 'A' Unless the declaration of interface A is changed to: interface A { b?: any } This feature has great practical significance in the project. We can write fewer if assertion statements or && operators, but achieve the same effect. Nullish CoalescingTranslated from Chinese, it is called the double question mark operator, which is actually quite descriptive because its syntax is exactly ??. The function of this operator, to put it simply, is to specify a default value for a null value, similar to the following code: let a = b || 'foo' When b is null, due to the nature of the || operator, the value of a will be assigned to foo. If we use the ?? operator to rewrite it, it would look like this: let a = b ?? 'foo' On the surface, there seems to be no difference between the two, but there is actually a hidden problem here, that is, the concept of null value does not only refer to null and undefined, but also a series of logically false values such as false and 0 are counted as null values, which is obviously problematic, for example: const b = 0 let a = b || 'foo' // a is 'foo' In this example, we expect a to be assigned a default value only when b is a truly empty value (null or undefined). a should be equal to 0, but the actual running result is foo, because b = 0, which will be interpreted as false during the operation of the || operator. I once wrote a verification code component in an actual project. Unfortunately, I fell into this pit and spent a long time debugging this problem. But using the ?? operator, this problem does not exist. Uncalled Function ChecksI believe many people have encountered similar problems. Due to the lack of effective naming conventions, assertion attributes and assertion methods are mixed in actual projects, such as: class A { isFoo(): boolean { return false; } } function test(a: A) { if (a.isFoo) { ... } } Here, if our intention is to get an assertion value by calling a.isFoo, we have obviously made a mistake. We should use if (a.isFoo()) instead of directly if (a.isFoo), because although the latter is not wrong at the syntactic level, it will be asserted as true in logical meaning. But after the release of 3.7, TypeScript will try to help us find this problem. Despite this, I still recommend that you develop a unified naming convention for assertion methods and assertion attributes, such as isXXX for attributes and assertXXX for methods. otherSome other changes are changes in usability, such as:
The above is a brief discussion of the details of three new features worth noting in TypeScript 3.7. For more information about the new features of TypeScript 3.7, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed tutorial on installing Nginx 1.16.0 under Linux
>>: Detailed explanation of the method of comparing dates in MySQL
This article uses examples to illustrate common b...
Vue version, copy it to the file and use it <t...
Conversion between rgba and filter values under...
1. Wireless Run PowerShell and enter the command:...
We know that when using HTML on NetEase Blog, we ...
Traditionally, developers create properties in Ja...
By right-clicking the source file, the following c...
This article shares the specific code of js+canva...
I have always wondered why the MySQL database tim...
Find the problem Recently, when I was filling in ...
cause I once set up WordPress on Vultr, but for w...
Installation Script Ubuntu / CentOS There seems t...
This article describes the Linux user and group c...
Table of contents 1. Enter a directory and create...
MySQL 8 brings a brand new experience, such as su...