JavaScript Variable typesVariables are storage for different values in JavaScript like any other programming language. We don’t need to define the type of the…May 9, 2021May 9, 2021
Some common JavaScript questions1. What is the difference between null and undefined?May 8, 2021May 8, 2021
JavaScript string split() methodsplit() method gives us the opportunity to divide a string into smaller portions. We can pass in a delimiter (“”, “ ”, “,”, “.”) to split…May 7, 2021May 7, 2021
React ConceptsVirtual Dom: Virtual DOM is a representation of UI and it is kept in memory to improve efficiency. It is synced with the real DOM by the…May 7, 2021May 7, 2021
Some concepts of JavaScriptHoisting: Hoisting is a concept in JavaScript which allows to access a variable before it is even declared. We can declare a hoisted…May 6, 2021May 6, 2021
Importance of machine learningI first got acquainted with artificial intelligence from the movie “The Terminator”. It was a movie about robots assuming control over the…May 5, 2021May 5, 2021
JavaScript array iterationThere are multiple ways to iterate through an array in JavaScript. I am covering some of the methods in this article. The list is given…May 5, 2021May 5, 2021
JavaScript replace() methodThere are many ways to manipulate a string in JavaScript. Suppose you have a string “My name is Karen”. Now you want to replace the name…May 5, 2021May 5, 2021