内容简介:The most anticipated chrome release V8, hits its long-awaited v8.0 and will be shipping with chrome 80 release in February.Optional chaining (?.)
The most anticipated chrome release V8, hits its long-awaited v8.0 and will be shipping with chrome 80 release in February.
The v8.0 release with some new features — optional chaining, Nullish coalescing , faster higher-order builtins and 40% less memory use thanks to pointer compression, these features and changes will improve the performance and code productivity.
Let’s see them one by one —
Optional chaining (?.)
Optional chaining (?.)
When accessing the nested object properties we need to do a manual check for properties existence, i.e., if they are nullish ( null or undefined ) or not.
// Error prone-version, could throw. const nameLength = db.user.name.length; TypeError: Cannot read property 'length' of undefined, if user is nullish
If they are nullish and we try to access it, JavaScript would throw an error: TypeError: Cannot read property 'property name' of undefined .
In many cases where an object is heavily nested, the if condition or ternary operator check becomes verbose and has the unwanted consequence of all truth values instead of only non-nullish values like below —
// Less error-prone, but harder to read.
let nameLength;
if (db && db.user && db.user.name)
nameLength = db.user.name.length;
// OR
nameLength =
(db
? (db.user
? (db.user.name
? db.user.name.length
: undefined)
: undefined)
: undefined);
Optional chaining ( ?. ) help us with the above issue.
It helps us write less code and get a robust chain of property accesses that are easy to read and check if intermediate values are nullish. If it is, then the entire expression evaluates to undefined .
const nameLength = db?.user?.name?.length
We can use optional chaining in the following 3 forms.
object?.property object?.[expression]
const array = null; array?.[0]; // => undefined
3. object?.([arg1, [arg2, ...]]) — executes an object method
const object = null;
object?.method('Some value'); // => undefined
These forms can be combined to create a long optional chain if you need it:
const value = object.maybeUndefinedProp?.maybeNull()?.[propName];
Nullish coalescing (??)
Nullish coalescing (??)
It’s a new short circuit operator meant to handle default values.
Currently, default values are sometimes handled with the logical || for falsy values and && operator for truthy, such as in the following example.
function test(props) {
const res = props.isTrue || true;
// return true if props.isTrue is set to false also,
// whereas the required result should be the value of props.isTrue
}
With the nullish coalescing operator, a ?? b evaluates to b when a is nullish ( null or undefined ), and otherwise evaluates to a .
So in the above case —
function test(props) {
const res = props.isTrue ?? true;
// return true only when props.isTrue is nullish or true
// In case of false it evalutes to false
}
The nullish coalescing operator and optional chaining are companion features and work well together. The example may be further amended to handle the case when no props argument is passed in.
function test(props) {
const enable = props?.isTrue ?? true;
// …
}
Faster higher-order builtins
To understand the above performance optimization, we should know about TurboFan in V8. So let’s quickly see what it is.
TurboFan is a JIT compiler architect as a multi-layered translation and optimization pipeline in V8 that translates and optimizes the code to progressively lower forms until a better quality machine code is generated. It uses a concept called the sea of node .
const charCodeAt = Function.prototype.apply.bind(String.prototype.charCodeAt); // before charCodeAt(string, 8); // a lot slower string.charCodeAt(8); // a lot faster // After optimization - same performance charCodeAt(string, 8); string.charCodeAt(8);
Till now, the call to charCodeAt was completely opaque to TurboFan, which led to the generation of a generic call to a user-defined function.
With this new change, we are now able to recognize the calling of built-in String.prototype.charCodeAt function and are thus able to trigger all the further optimizations that TurboFan has in stock to improve calls to builtins, which leads to the same performance as the direct usage of builtin.
Pointer compression
The awesome V8 team, upon inspection of the heap, discovered that the tagged values (which represent pointers or small integers) occupy the majority of the heap!
Upon further inspection, they found that the tagged values are as big as the system pointer: they are 32 bits wide for 32-bit architectures, and 64 bits in 64-bit architectures. Then, when comparing the 32-bit version with the 64-bit one, we are using twice as much heap memory for every tagged value.
So, to solve above, they stored only the unique lower bits into the heap, and then use them to generate top bits for 64 bits architectures thus saving precious memory resources.
The above solution improved the performance on real websites in the time spent in V8, and in its garbage collector!
Some of the result shared by V8 Team
So, we can expect an overall speed improvement and some cool javascript feature with this v8 v8 releasee.
To read more about v8 — https://v8.dev/docs
If you liked the article, feel free to share it and help others find it!
Get yourself added to our 2500+ people subscriber family to learn and grow more and please hit the share button on this article to share with your co-workers, friends, and others.
Check out articles onJavascript, Angular , Node.js , Vue.js
For more articles stay tuned tooverflowjs.com
Thank you!
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
程序员的数学思维修炼(趣味解读)
周颖 / 清华大学出版社 / 2014-4-1 / 45.00元
本书是一本专门为程序员而写的数学书,介绍了程序设计中常用的数学知识。本书门槛不高,不需要读者精通很多高深的数学知识,只需要读者具备基本的四则运算、乘方等数学基础知识和日常生活中的基本逻辑判断能力即可。本书拒绝枯燥乏味的讲解,而是代之以轻松活泼的风格。书中列举了大量读者都很熟悉,而且非常有趣的数学实例,并结合程序设计的思维和算法加以剖析,可以训练读者的数学思维能力和程序设计能力,进而拓宽读者的视野,......一起来看看 《程序员的数学思维修炼(趣味解读)》 这本书的介绍吧!
RGB转16进制工具
RGB HEX 互转工具
Markdown 在线编辑器
Markdown 在线编辑器