SLShraddha Landgeinexplorewithshraddha.hashnode.dev·Aug 11 · 7 min readFrom javac to JVMWhen we write a Java program, we write code that humans can understand. But a computer's CPU ultimately works with low-level machine instructions represented as bits (0s and 1s). So, what happens betw00
SLShraddha Landgeinexplorewithshraddha.hashnode.dev·Mar 22 · 3 min readJavaScript Promises Explained for BeginnersA Promise in JavaScript is an object that represents a value that will be available in the future. It starts in a waiting state (pending), and later it either gives a result (fulfilled) or shows an er01A
SLShraddha Landgeinexplorewithshraddha.hashnode.dev·Mar 20 · 3 min readUnderstanding the this Keyword in JavaScriptThe this keyword in JavaScript refers to the object that is currently calling or executing a function, acting like a hidden parameter set by the caller. this points to the object calling a function—th00
SLShraddha Landgeinexplorewithshraddha.hashnode.dev·Mar 11 · 3 min readARRAY METHODSArray is an important topic in JavaScript. An array is a collection of multiple values stored in a single variable. It helps us store and manage many items like numbers, names, or objects together. le00
SLShraddha Landgeinexplorewithshraddha.hashnode.dev·Feb 1 · 3 min readHTML Tags and ElementsWhat is HTML and Why Do We Use It? Full Form: HTML [Hyper Text Markup Language] It’s called as skeleton of website. It is the standard language used to create webpages. It gives structure to the content you see on the internet. Without HTML, a browse...00