Dec 17, 2025 · 3 min read · In 2025, Income Tax Refund Delay has become a major concern. Many taxpayers who filed their ITRs on time are still waiting for their refunds. According to CBDT Chairman Ravi Agrawal, low-value refunds are processed quickly, while high-value refunds u...
Join discussion
Jun 28, 2025 · 7 min read · These four concepts are commonly used in React development and modern JavaScript. This article explains each of them step-by-step with 3 real-life examples per topic, using simple English so both beginners and working professionals can learn easily. ...
Join discussionDec 1, 2024 · 8 min read · Introduction In JavaScript, functions are vital for effectively structuring, managing, and reusing code. To make the most of their capabilities, it's important to grasp two key statements frequently used within functions: return and console.log. Whil...
Join discussionAug 2, 2023 · 5 min read · Prerequisite: This document is basic enough, but to understand it well, you should have a good knowledge of variables and simple logic in Javascript, and you should have an integrated development environment (IDE) such as Vs Code, Sublime Text, or a ...
Join discussion
Feb 18, 2023 · 5 min read · You must have really enjoyed it when you used the console.log() function on your browser's console for the first time. I used it the first time to print "Hello World" on the console and felt very proud of myself. https://media.giphy.com/media/3oEhmKM...
Join discussion
Feb 14, 2023 · 2 min read · Have you also noticed "undefined" appearing on your Console when running certain methods or expressions and wondered why? Well, that's because the Console, which is a tool for debugging and inspecting the state of a web page is designed to display th...
Join discussion
Jan 7, 2023 · 3 min read · in this article, I will try my best to explain the JavaScript return keyword in such a way an absolute beginner can easily understand. just as the word implies; the return keyword returns a value, the value could be a number a string, or any other da...
Join discussion
Nov 21, 2022 · 3 min read · Hello Hashnode family💜, Welcome back to my blog😊. So a friend of mine who recently just started learning javascript reached out to me and said, "Return in javascript is giving me a tough time." I quickly scrambled around to get him articles on retu...
JCAJohn and 3 more commented
Jul 23, 2022 · 2 min read · when you use functions in javascript, you use return. If you find yourself in these situations: When using an expression after a return statement 2.when using a semicolon-less return statement but including an expression directly after. see codes b...
Join discussion