PBPujari Basvarajincodecric.hashnode.dev·Feb 14, 2023 · 7 min readExecution Context In JavaScriptHow JavaScript Code Gets Executed For those who don't know, the browser doesn't natively understand the high-level JavaScript code that we write in our applications. It needs to be converted into a format that the browser and our computers can under...00
PBPujari Basvarajincodecric.hashnode.dev·Feb 13, 2023 · 5 min readFunctions In JavaScriptPrerequisites You should be familiar with some fundamental JavaScript concepts such as variables, expressions, and conditional statements to follow along with this article. What is a Function in JavaScript? A function is a block of reusable code w...00
PBPujari Basvarajincodecric.hashnode.dev·Feb 13, 2023 · 5 min readObjects In JavaScriptWhat Are Objects An object is a data type that can take in collections of key-value pairs. A major difference between an object and other data types such as strings and numbers in JavaScript is that objects can store different types of data as its v...00
PBPujari Basvarajincodecric.hashnode.dev·Feb 11, 2023 · 7 min readArrays In JavascriptWhat Is Array An array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be accessed directly by only using its index number. Example of Array: const ArrayNa...00
PBPujari Basvarajincodecric.hashnode.dev·Feb 11, 2023 · 7 min readMedia QueryThe Media Query was introduced in CSS3. This made it possible for designers to define style rules as per the capability of the device. Before media queries, there were media rules, but they never got a lot of support from the devices. Need Of Media ...00