VJVaishnavi Jajuinpritijaju.hashnode.dev·Feb 25, 2023 · 2 min readJavaScript Objects and it's MethodsWhat are objects? The Object represents one of JavaScript's data types. JavaScript objects are collections of key-value pairs. The values can be of any data type, including arrays and other objects. It is a collection of named values. In JavaScript, ...00
VJVaishnavi Jajuinpritijaju.hashnode.dev·Feb 25, 2023 · 3 min readFlow Of Code Execution in JavaScriptIntroduction: JavaScript is a synchronous and single-threaded language. To know how javascript code gets executed internally behind the scenes, we have to know something called Execution Context Execution Context: Everything in javascript is wrapped ...00
VJVaishnavi Jajuinpritijaju.hashnode.dev·Feb 24, 2023 · 3 min readJavaScript FunctionsIntroduction: A JavaScript function is a block of code designed to perform a particular task. A JavaScript function is executed when "something" invokes it (calls it). It can be reused throughout the program. They can take in input, called parameters...00
VJVaishnavi Jajuinpritijaju.hashnode.dev·Feb 24, 2023 · 4 min readAll about Media QueryWhat are media queries? The Media query in CSS is used to create a responsive web design. It means that the view of a web page differs from system to system based on screen or media types. Media queries are created to write new CSS rules or more ofte...00
VJVaishnavi Jajuinpritijaju.hashnode.dev·Feb 24, 2023 · 3 min readAll about <INPUT /> ElementsIntroduction: The <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. ...00