JavaScript Regex Tutorial Zero to Hero onehungrymind March 17, 2023JavaScript regular expressions, also known as regex, are powerful tools for working with text. They allow you to search, replace, and manipu... Read More
Best practices for naming variables in JavaScript onehungrymind March 10, 2023Choosing the right naming convention for variables in JavaScript is crucial for writing code that is easy to read, understand, and maintain.... Read More
4 Best way to check Undefined or Null in JavaScript onehungrymind March 07, 2023JavaScript is a dynamically-typed language, which means that variables can hold values of different types at different points in time. Howev... Read More
Tip of the day: Try Array.includes For Multiple Conditions [JavaScript] onehungrymind September 18, 2018In the searies of Tip Of The Day , today I want to share a tip about JavaScript multiple conditions you may or might used earlier in your co... Read More
JavaScript: Array Map, Filter and Reduce onehungrymind September 05, 2018In JavaScript if you want to use Array methods you'll find a lot, just type Array.prototype. in the console and it will list down all ... Read More