RMRupsa Mondalinru-dev.hashnode.dev00OOP in Java Part 26d ago · 6 min read · In Part 1, we explored the fundamentals of Object-Oriented Programming (OOP) in Java — including classes, objects and inheritance. Here we will learn about encapsulation, polymorphism, abstract class Join discussion
SShayintoddlerstech.hashnode.dev00Synchronous vs Asynchronous JsMar 26 · 2 min read · what is synchronous code ? JavaScript is fundamentally a synchronous, single-threaded language that executes code line-by-line in a sequential order, where each instruction must complete before the Join discussion
SShayintoddlerstech.hashnode.dev00if you know function you know callbackMar 26 · 2 min read · even if you have heard callback function for the first time , let me clear one thing it is no different from a function . If you can digest this then callbacks will be damn easy . you should already hJoin discussion
SShayintoddlerstech.hashnode.dev00Async/Await in JavaScriptMar 26 · 3 min read · to understand why async nature was introduced you must know about callbacks and promises . after reading these you will know about callback hell and how promises solve it . now there is problem with pJoin discussion
AAnastasiainjavacaptain.hashnode.dev10Free Java Courses (with Certificates!) from the Creators of IntelliJ IDEAMar 20 · 4 min read · If you’re learning Java (or any programming language really), you’ve probably faced the same dilemma: there’s no shortage of tutorials, but finding structured, hands-on practice that doesn’t cost a foJoin discussion
RRahulinrahulism.hashnode.dev00I Tested 37 v0 Alternatives So You Don't Have To (2026)Mar 17 · 62 min read · A no-BS guide to every AI app builder, code generator, and design-to-code tool worth knowing, what actually ships, what's overhyped, and what I'd use with my own money. I like v0. I've used it to spiJoin discussion
HRHammad Razainjavascriptobject.hashnode.dev00Objects in JavaScript.Mar 15 · 2 min read · In real-world applications, data is rarely stored as single values. Most of the time, we need to store related information together. For example, if we want to store information about a person, we migJoin discussion
HRHammad Razainswwitchjs.hashnode.dev00Control Flow in JavaScript: If, Else, and Switch Explained.Mar 15 · 3 min read · Every program needs the ability to make decisions. Sometimes the program must run one block of code, and sometimes another. This decision-making process is called control flow. In JavaScript, we contrJoin discussion
HRHammad Razainjsarrowfunc.hashnode.dev00Arrow Function.Mar 15 · 4 min read · Modern JavaScript introduced many improvements that make code shorter, cleaner, and easier to read. One of the most commonly used features is arrow function.Arrow functions were introduced in E6(ECMA Join discussion
HRHammad Razainjsarrays10.hashnode.dev00JavaScript ArraysMar 15 · 3 min read · When programming, we often deal with lists of data. For Example: A list of fruits , students marks , tasks in a to-do app. Instead of creating many separate variables, JavaScript provides a powerful sJoin discussion