HTHirenkumar Trivediinhiren40.hashnode.dev·Jan 27, 2023 · 2 min readFlow of code execution in JavaScriptJavaScript is a programming language that is commonly used for creating interactive and dynamic web pages. One of the key features of JavaScript is its ability to execute code in a specific order, known as the flow of code execution. In this article,...00
HTHirenkumar Trivediinhiren40.hashnode.dev·Jan 27, 2023 · 2 min readJavaScript FunctionsJavaScript functions are blocks of code that can be reused multiple times throughout a program. They are defined using the "function" keyword, followed by a name and a set of parentheses. The parentheses may contain parameters, which are values that ...00
HTHirenkumar Trivediinhiren40.hashnode.dev·Jan 27, 2023 · 2 min readJavaScript Object and it’s methodJavaScript objects are a fundamental concept in the language, as they allow developers to store and manipulate data in a structured way. An object is a collection of properties, each of which has a name and a value. The value can be of any data type,...00
HTHirenkumar Trivediinhiren40.hashnode.dev·Jan 27, 2023 · 2 min readJavaScript Array and it’s methodsJavaScript arrays are used to store multiple values in a single variable. These values can be of any data type, including numbers, strings, and objects. One way to create an array in JavaScript is by using the Array constructor. For example: var frui...00
HTHirenkumar Trivediinhiren40.hashnode.dev·Jan 27, 2023 · 2 min readMedia QueryMedia Queries are a CSS feature that allows designers to apply different styles to a webpage depending on the characteristics of the device it is being viewed on. This allows for responsive design, where the layout of a webpage adapts to the screen s...00