KMKishore Mongarinkishoremongar.hashnode.dev·Jun 8, 2025 · 8 min readDart FundamentalsDart is an object-oriented, statically typed, class-based programming language developed by Google. It's the primary language used for building mobile, web, and desktop apps with Flutter. Dart’s syntax is similar to JavaScript, Java, and C# but inclu...00
KMKishore Mongarinkishoremongar.hashnode.dev·May 21, 2025 · 28 min readJavaScript FundamentalsJavaScript is a synchronous single-threaded language. It’s considered a loosely typed or dynamically typed language because it doesn't require you to explicitly define the type of a variable when you declare it. The type of a variable is determined a...00
KMKishore Mongarinkishoremongar.hashnode.dev·Aug 7, 2022 · 1 min readWhat is Virtual DOM in React ?Let's unpack the meaning of the word into two segments from the above question. Virtual meaning it's a representation(simulation) of the original. DOM stands for Document Object Model, meaning documents(elements) are treated as Object's copies/replic...01A
KMKishore Mongarinkishoremongar.hashnode.dev·Aug 6, 2022 · 2 min readWhat is State in React ?State is a plain and simple Javascript object used by React as a special React built-in object which helps us to create and handle(manage) data as in key/value pair. It's where we as a developer store the property values of the component. In much sim...01A
KMKishore Mongarinkishoremongar.hashnode.dev·Jul 31, 2022 · 1 min readWhat is Props in React ?Props is just an another name for properties. Props help us in order to pass the required information/data/state to the component via HTML attributes. Properties are read-only and immutable unlike states. Let's take a real world scenario. A component...00