NNISHA inbugneutrino.hashnode.dev·Jun 10, 2022 · 2 min readShort circuiting in || && ?? operators, JavascriptImage Source:Google You heard of OR logic gate? Well || operator is like that only. If any of the two inputs is true (which are being compared at a specific point in time) it will short circuit there and won't execute further. true||console.log("...00
NNISHA inbugneutrino.hashnode.dev·Jun 10, 2022 · 2 min read0.1+0.2==0.3 (False or True)?What is it? Okay so it is False. Actually these numbers will be converted to their binary format for circuits to understand on and off states. So 0.1 and 0.2 here are not 1/10 and 2/10. Let's first understand binary and decimal system to make it cl...00
NNISHA inbugneutrino.hashnode.dev·Jun 10, 2022 · 2 min readCSS PositionsDefault mode-CSS position of an element is static. New Position Context gets created whenever position property is other than static for that element . top/bottom/left/right/z-index can be applied to that element. 1)Position-Relative Element wi...00