SSSumit Saundadkarinsumitsaundadkar.hashnode.dev·May 13, 2022 · 3 min readCSS PositioningThe position CSS property The position property tells the browser how an element should be positioned on the page. By default the value of position is static, but we can modify it to be any of the following values: relative, absolute, fixed, sticky. ...00
SSSumit Saundadkarinsumitsaundadkar.hashnode.dev·May 13, 2022 · 3 min readDeep Copy vs Shallow Copy in JS.Deep copy and shallow copy are the most important javascript concept while learning. So deep copy and shallow copy are related to cloning (copy) the data types. The behavior of deep copy and shallow copy depends on the type of data type. In JS the...00