blog.prakashtsx.meJavaScript Promise MethodsWelcome to the world of JavaScript! If you have ever promised a friend you would call them back, you already understand the logic of a Promise. In programming, things often take time like downloading 7h ago路5 min read
blog.prakashtsx.meArrow Functions in JavaScript: A Simpler Way to Write FunctionsModern JavaScript introduced arrow functions to make writing functions shorter and cleaner. If you're learning JS, arrow functions will quickly become your favorite feature. Let鈥檚 understand them step2d ago路3 min read
blog.prakashtsx.meArray Methods You Must KnowIf you want to become good at JavaScript especially as a web developer arrays are everywhere. API data comes in arrays Database results come in arrays UI lists are rendered from arrays If you mas4d ago路6 min read
blog.prakashtsx.meCSS Selectors ExplainedWhy Do We Need CSS Selectors? Imagine you have a webpage with: headings paragraphs buttons cards links CSS needs a way to answer one simple question: Which element should I style? That鈥檚 exactly what CSS selectors do. Selectors are used to c...Jan 30路3 min read
blog.prakashtsx.meEmmet for HTMLThe Problem: Writing HTML Is Slow Type this by hand: <div class="container"> <header class="header"> <h1>Welcome</h1> </header> <main class="content"> <p>This is a paragraph.</p> </main> </div> That's a lot of typing. Opening tags, c...Jan 30路5 min read