102 followers
On a spaceship
Introduction Ethereum is a popular blockchain platform for developing and deploying decentralized applications (DApps) and other digital assets. One...
Introduction A Set is a collection of unique values. The emphasis on unique is because a Set cannot store the same data more than once. It stores each...
A little back story 📜 One day, while learning algorithms in JavaScript, I found this challenge: Using a for loop, iterate from 0 to 100 and return...
Introduction Being a developer often feels like riding a roller coaster. Some days you’re high and ecstatic; others, you’re at your lowest point -...
Introduction A Map is a collection of elements, where each element is stored as a key: value pair. By this definition, it can seem similar to an...
All JavaScript values are objects, except primitives. What's an Object? An object is a collection of properties in key: value pairs. To understand...