vt-blogs.hashnode.devUnderstanding Objects in JavaScriptWhat Are Objects and Why Are They Needed? Imagine a real person. A person has: name, age and city If we store these separately: let name = "Rahul"; let age = 22; let city = "Bangalore"; These variabl19h ago·3 min read
vt-blogs.hashnode.devUnderstanding Variables and Data Types in JavaScriptWhat Are Variables? Imagine a box where you store things. One box stores your name One box stores your age One box stores whether you are a student In programming, a variable is just like that bo19h ago·3 min read
vt-blogs.hashnode.devUnderstanding Control Flow in Programming in JSImagine this real-life situation: if it is raining → take an umbrella else → wear sunglasses if your age is 18 or more → you can vote else → you cannot vote We make decisions like this every day22h ago·4 min read
vt-blogs.hashnode.devJS - Arrow FunctionsIf you are just getting comfortable with JavaScript, you might have noticed a funny-looking piece of code that looks like this: =>. This is called an Arrow Function. When you first see them, arrow fun2d ago·4 min read
vt-blogs.hashnode.devArray Methods You Must KnowIf you are learning JavaScript, you will use arrays all the time. Array is nothing but a list of items - like a grocery list or list of favourite movies Some of the Array Methods are: To Add and Remov2d ago·4 min read