VSVidya Sagarinvsagar.hashnode.dev·Feb 24, 2023 · 2 min readJavaScript Object and its methodIn JavaScript, an object is a collection of key-value pairs where each key is a string (or symbol) and each value can be any data type, including other objects. Objects are commonly used to represent complex data structures and to organize related da...00
VSVidya Sagarinvsagar.hashnode.dev·Feb 24, 2023 · 6 min readJavaScript Array and its methodsIntroduction JavaScript Array is an object used to store and manipulate a collection of elements, which can be of any data type, including numbers, strings, and objects. Arrays are a fundamental concept in JavaScript, and they provide an easy way to ...00
VSVidya Sagarinvsagar.hashnode.dev·Feb 23, 2023 · 2 min readThe flow of code execution in JavaScriptIn JavaScript, the code execution follows a specific flow. The flow can be broken down into the following steps: -Tokenization : The first step in the flow of code execution is tokenization. In this step, the JavaScript engine breaks up the source co...00
VSVidya Sagarinvsagar.hashnode.dev·Feb 23, 2023 · 3 min readMedia QueryIntroduction Media queries in CSS are a powerful tool that allows us to apply different styles to a web page based on the characteristics of the device or viewport it is being viewed on. By using media queries, we can create responsive and adaptive w...00
VSVidya Sagarinvsagar.hashnode.dev·Feb 23, 2023 · 2 min readInput Elements in HTMLIntroduction Input elements in HTML are used to allow users to input data on a web page. They are a fundamental part of most web forms, where users enter data such as their name, email address, password, and other information. Most commonly used elem...00