PMPritika Mishrainpritika.hashnode.dev·Jan 26, 2023 · 3 min readWhat is JSON Web Token?Introduction to JSON Web Token (JWT) JWT or JSON web token is the most popular method to identify an authenticated user. The process of authentication typically consists of the user providing a username and password to the application, which then sen...00
PMPritika Mishrainpritika.hashnode.dev·Dec 18, 2022 · 6 min readFlow of code execution in JavaScriptThe flow of code execution in JavaScript JavaScript is a programming language that is commonly used for web development and can be run in a web browser or on a server using Node.js. In this article, we will discuss the flow of code execution in JavaS...00
PMPritika Mishrainpritika.hashnode.dev·Dec 18, 2022 · 4 min readJavaScript FunctionsIntroduction to JavaScript Functions In JavaScript, a function is a block of code designed to perform a particular task. It is a set of statements that can be executed whenever and wherever required in your code. Functions are one of the fundamental ...00
PMPritika Mishrainpritika.hashnode.dev·Dec 18, 2022 · 4 min readJavaScript Objects and it's MethodsJavaScript Objects JavaScript objects are collections of key-value pairs. The values can be any data type, including arrays and other objects. Objects in JavaScript are used to represent real-world entities, such as a user or a product. Creating Obje...00
PMPritika Mishrainpritika.hashnode.dev·Dec 18, 2022 · 3 min readMedia Queries in CSSMedia Queries in CSS Media queries are a powerful tool in CSS that allows you to apply different styles to your webpage based on the dimensions of the viewport, or the device that the webpage is being displayed on. They can be used to create responsi...00