ACAjay Chauhaninajaychauhan.hashnode.dev·Jun 9, 2023 · 13 min readJavaScript Interview Questions Part-1Hey Reader , I am a Front-end Developer and recently , i have been looking for a job switch and after giving interviews for various companies . I collected a few questions that were frequently asked and helped me to ace my JS interviews. Q1. What are...00
ACAjay Chauhaninajaychauhan.hashnode.dev·Jan 4, 2023 · 7 min readString and its methods in JavascriptWhat are Strings? The string object is used to represent and manipulate a sequence of characters. 1.at(): This method takes the argument as an index to find the value at that index, it works for both positive and negative values. const sentence = 'Th...00
ACAjay Chauhaninajaychauhan.hashnode.dev·Dec 24, 2022 · 9 min readArray and all its methods in JavascriptThe Array in Javascript helps store a collection of multiple items under a single variable name and has different methods to perform various operations. How to initialize an array? let name = ["Mike","Samuel","Robert"]; Different array methods in Js...01D
ACAjay Chauhaninajaychauhan.hashnode.dev·Dec 24, 2022 · 2 min readJavascript variable and their scopeWhat is variable? A Variable is a place holder/container for storing data. The general rule of declaring variables: must be identified with unique names. can contain letters, digits, underscores, and dollar signs. must begin with a letter, can als...00
ACAjay Chauhaninajaychauhan.hashnode.dev·Dec 22, 2022 · 2 min readPositions in CSSPositions in CSS property sets how an element is positioned in a document. Based on top, right, left and bottom determines the final location of positioned elements. They are of five types: static relative absolute fixed sticky position: static;...00