MNMaitreyee Nathinjustcodingthings.hashnode.dev·Jul 21, 2022 · 4 min read"use strict" in JavaScriptHave you ever come across this line "use strict" written on top of the code and wondered what this does and what is the use of this line? Only by writing this one single line on the top of the code will allow us to write better programs and also mak...00
MNMaitreyee Nathinjustcodingthings.hashnode.dev·Jul 21, 2022 · 6 min readPosition Property in CSSWhile designing a webpage, we often require some elements to be positioned in a certain manner. This can be achieved by using the CSS position property. Understanding how the elements are being placed using the CSS position property can be a bit conf...00
MNMaitreyee Nathinjustcodingthings.hashnode.dev·Jul 20, 2022 · 4 min readHoisting and Temporal Dead ZoneCan you predict the output for the below snippets of code? console.log(item1) console.log(item2) var item1; let item2; let item3; console.log(item3) The answer to the first question is : undefined and Reference error The answer to the second questi...00