NMNishok Maharaaj Rinnishok19.hashnode.dev·Sep 11, 2022 · 4 min readJavascript interview preparation cheatsheetScope in Javascript The scope is the current context of execution in which values and expressions are "visible" or can be referenced. If a variable or expression is not in the current scope, it will not be available for use. Scopes can also be layere...00
NMNishok Maharaaj Rinnishok19.hashnode.dev·Sep 2, 2022 · 3 min readArrays in JavascriptArray The Array object, as with arrays in other programming languages, enables storing a collection of multiple items under a single variable name, and has members for performing common array operations. Initializing an Array var count = ["one", "two...00
NMNishok Maharaaj Rinnishok19.hashnode.dev·Jul 22, 2022 · 1 min readCSS SelectorsCSS selectors define the elements to which a set of CSS rules apply. ID selector Selects an element based on the value of its id attribute. There should be only one element with a given ID in a document. #id-selector { /* */ } Class selector Sele...00
NMNishok Maharaaj Rinnishok19.hashnode.dev·Jul 22, 2022 · 2 min readPosition in CSSThe position CSS property sets how an element is positioned in a document. The top, right, bottom, and left properties determine the final location of positioned elements. There are five different position values: static relative fixed absolute stic...00