© 2023 Hashnode
#coding
In the age of rapid technological advancements, it's fascinating to ponder what exactly "tech" means to us. From smartphones to artificial intelligence, technology has infiltrated every aspect of our …
If you're new to the world of web development, welcome! Today, I'll discuss one of the most fundamental aspects of the internet - HTML, which stands for HyperText Markup Language. In essence, HTML is…
JavaScript treats functions as first-class citizens. Functions are considered values similar to primitives. Functions can be assigned to variables, passed as arguments to other functions and return a…
In today's increasingly interconnected world, coding has become a highly valuable skill set that offers numerous opportunities for personal and professional growth. However, not all kids have equal ac…
'this' is a special keyword in JavaScript that confuses the developers. Let's break down the core concept behind 'this'. 'this' keyword in JavaScript represents the object it's currently associated w…
Hey there, little one! Have you ever wondered how coding can make you even more creative and imaginative? Well, today we're going to explore just that! We'll dive into the exciting world of coding and…
We now want to pass data in class, so we will have to design class in such manner. we define inbuilt function '__init__()' which is constructor. class karanskills1 : def __init__( self , phone_number , email_id , student_id ) : self.phone_n…
Don’t you sometimes wonder what it would be like to become an ‘alpha’ in coding? By ‘alpha’ I mean precisely the same thing you think it is. If you don’t, well you’re probably a beta. So, there are so…
[Important] There is a lot of code written in here and much less text. I know it is overwhelming to see so much code when you don’t even understand the language. But I have explained everything in eac…
Functions In Javascript: JavaScript embraces a wide range of functional programming principles alongside its object-based programming foundation. Let's explore the different ways to define Functions i…