codecric.hashnode.devExecution 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...Feb 14, 2023·7 min read
codecric.hashnode.devFunctions 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...Feb 13, 2023·5 min read
codecric.hashnode.devObjects 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...Feb 13, 2023·5 min read
codecric.hashnode.devArrays 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...Feb 11, 2023·7 min read
codecric.hashnode.devMedia 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 ...Feb 11, 2023·7 min read