HKHITESH KUMARinhiteshs-dev-blog.hashnode.dev·Mar 31 · 4 min readFunction Declaration vs Function Expression: What’s the Difference?function in JavaScript are reusable blocks of code designed to perform specific tasks. They allow you to organize, reuse , and modularize code. It can take inputs, perform action and returns outputs. 00
HKHITESH KUMARinhiteshs-dev-blog.hashnode.dev·Mar 23 · 4 min readJavaScript Arrays 101 : Beginner GuideIn JavaScript, an array is an ordered list of values. Each values, known as an element, is assigned numeric position in the array called its index. The indexing starts at 0, the second at position 1 a00
HKHITESH KUMARinhiteshs-dev-blog.hashnode.dev·Mar 21 · 4 min readUnderstanding Object-Oriented Programming in JavaScript. Object Oriented Programing is a programing style that we are represent real world model entity into code using classes and object. A classes is a blueprint that define property and methods an object c00
HKHITESH KUMARinhiteshs-dev-blog.hashnode.dev·Mar 20 · 3 min readUnderstanding Objects in JavaScript : beginner friendly explainationThe JavaScript objects are variable that can store both values and functions and It represents one of JavaScript's data types. What objects are and Why the are needed ? An object is a dynamic data str00
HKHITESH KUMARinhiteshs-dev-blog.hashnode.dev·Mar 19 · 3 min readUnderstanding Variables and Data Types in JavaScriptIn JavaScript variable are container, which store data in memory. language are provided variable declaration keyword using keyword then declare variable. JavaScript provide method like var, let, and c00