© 2022 Hashnode
#javascript
Problem statement 🛠 Job creator perspective 🕵️♀️ Imagine posting about a hiring post or referral job opening on Twitter or LinkedIn and receiving 100s of resumes to go through..sounds so tiring and…
Git commit messages are how we communicate to our future selves. They help you understand why a certain line of code was added to the code base. That's why knowing how to write a good Git commit messa…
The following is a republishing of a summary of a research I was tasked to do in Hashnode. The perspective here is me talking to my colleagues. I chose to keep that perspective to preserve the raw qua…
Medusa is a rising ecommerce platform that fits all businesses. Medusa is an open source composable ecommerce platform with easy customizations and integrations. Medusa comes with a lot of ecommerce f…
You might need to determine if an object holds a particular property. Let's say we have a user object. Optionally the email property can be set. If not, we want to show a form so the user can fill out…
If you are a front-end developer or just starting your web development journey, learning ReactJS is the best way to start. Not only is ReactJS popular and in demand by employers, but it will also make…
Dates are a pretty fundamental concept. We use them all the time. And computers use them all the time. But parsing dates using JavaScript can be a little...well, interesting. In this article, we'll: …
Introduction In this article I am going to explain how to add video chat in your WordPress website. WordPress is an awesome CMS and the most famous one in the world. According to WordPress.com 43% of the web runs on WordPress. With a whole …
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 an array of all prime numbers within that range. I…
Introduction Books are not only for reading and getting knowledge. It helps to increase our concentration as reading and understanding every line needs concentration. Programming books not only teach …
Hey, I teach programming to young graduates. For this, I created an initiative called Skibble. In the video, I explained how to build a complete app in just 2 hours. I encourage you to watch the vide…
Whattttt??? Yes, You read that correctly. Let's deep dive into this topic. Before we get into a serious drill, Let's quickly revise objects and functions in JavaScript. Object: Objects in JavaScript are nothing but a non-primitive type da…
1. Create Items in your navbar.js file import React from 'react'; const navItems = [ { name: 'Home', href: '#home' }, { name: 'About', href: '#about' }…