Beberapa fitur baru di JavaScript ES2020 yang membuat JavaScript menjadi bahasa pemrograman yang powerful, seperti BigInt, Dynamic Import, Nullish Coalescing , Optional Chaining , Promise All Settled , String#MatchAll , Global This , Module Namespace Export , For In Order Loop, dan Import Meta .
https://www.freecodecamp.org/news/javascript-new-features-es2020/
-
Beberapa fitur di ES2016 / ES7 dan ES2017 / ES8 yang sering dipakai dan mempermudah penulisan kode.
https://levelup.gitconnected.com/small-ecmascript-features-that-are-a-big-help-43ea45967ac3
-
Mutable dan Immutable property dan parameter di JavaScript dengan Object.freeze()
https://alligator.io/js/mutability/
-
Beberapa aplikasi dan hal yang dapat dibangun dengan JavaScript sebagai general purpose language
https://levelup.gitconnected.com/7-cool-and-unusual-things-you-can-code-in-javascript-fc7d400274ba
https://www.freecodecamp.org/news/future-of-javascript/
-
Latihan membuat daftar warna acak dengan JavaScript dan menampilkan ke DOM HTML
https://levelup.gitconnected.com/generating-a-random-color-in-javascript-spice-up-your-dom-with-a-bit-of-chance-e8b36061421c
#javascript #generalpurpose #es2020 #es2017 #es2016 #mutable #immutable #object #freeze
https://www.freecodecamp.org/news/javascript-new-features-es2020/
-
Beberapa fitur di ES2016 / ES7 dan ES2017 / ES8 yang sering dipakai dan mempermudah penulisan kode.
https://levelup.gitconnected.com/small-ecmascript-features-that-are-a-big-help-43ea45967ac3
-
Mutable dan Immutable property dan parameter di JavaScript dengan Object.freeze()
https://alligator.io/js/mutability/
-
Beberapa aplikasi dan hal yang dapat dibangun dengan JavaScript sebagai general purpose language
https://levelup.gitconnected.com/7-cool-and-unusual-things-you-can-code-in-javascript-fc7d400274ba
https://www.freecodecamp.org/news/future-of-javascript/
-
Latihan membuat daftar warna acak dengan JavaScript dan menampilkan ke DOM HTML
https://levelup.gitconnected.com/generating-a-random-color-in-javascript-spice-up-your-dom-with-a-bit-of-chance-e8b36061421c
#javascript #generalpurpose #es2020 #es2017 #es2016 #mutable #immutable #object #freeze
freeCodeCamp.org
10 New JavaScript Features in ES2020 That You Should Know
By Mehul Mohan Good news – the new ES2020 features are now finalised! This means we now have a complete idea of the changes happening in ES2020, the new and improved specification of JavaScript. So let's see what those changes are. #1: BigInt BigInt,...
Mengenal beberapa cara untuk melakukan perulangan Looping di Javascript, seperti for in dan for of
https://dev.to/yashints/have-you-ever-thought-about-for-loops-9ji
-----
Mengenal konsep stack dan queue di Javascript
https://alligator.io/js/stacks-queues/
#stack #queue
--------
Pemahaman mutability dan Immutability di Javascript
https://alligator.io/js/mutability/
#mutable #immutable
https://dev.to/yashints/have-you-ever-thought-about-for-loops-9ji
-----
Mengenal konsep stack dan queue di Javascript
https://alligator.io/js/stacks-queues/
#stack #queue
--------
Pemahaman mutability dan Immutability di Javascript
https://alligator.io/js/mutability/
#mutable #immutable
DEV Community
Have you ever thought about different types of for loops? ➰
Using a loop is almost a must in our day to day life. But have you ever thought what kind of loop sho...