Swapnil Bawaneswapnilbawane.hashnode.dev·Jul 10, 20234 Common errors during Netlify deployment.Introduction I was building React projects as part of Neogcamp cohort and we faced some issues here and there while trying to deploy our projects. In this document, we will consider the common cases/errors while deploying your React project and how t...1 like·51 readsReact
vivek kumarwebcraftlabs.hashnode.dev·Apr 9, 2023Css Layout: Display PropertyKnow the difference between inline v/s block HTML elements 🟢Inline HTML elements: An inline element does not start on a new line and only takes up as much width as necessary ⭐Any height and width properties will have no effect. .inline-element{ di...13 likes·52 readsCSS
Santos Mmusantosmmu.hashnode.dev·Mar 28, 2023Exception Handling in JavaScript, for Beginners !! 🙈Overview of Exception Handling in JavaScript JavaScript is one of the most widely used programming language over the globe. Therefore, many developers enjoy writing code and in recent times JavaScript has expanded into different usages with the incre...1 like·85 readsneogcamp
Swapnil Bawaneswapnilbawane.hashnode.dev·Mar 26, 2023Some pointers about Destructuring arrays and objects in Javascript.Destructuring Arrays In the case of an array, the key for each element is fixed: that is the index; so we can write any variable name in destructuring the array to hold its value. The first value in the destructured array will correspond to the first...88 readsWeb Development
Nikhil Kumartechxterized.hashnode.dev·Mar 25, 2023Higher Order Array MethodsIntroduction We have always been using the traditional for-loop for all array-based operations and it has not been worth writing lines of code even just for small operations. It is quite tiresome sometimes. Well, if you are here that means you have t...101 readsneogcamp
Nikhil Kumartechxterized.hashnode.dev·Mar 24, 2023Ternary Operator: Solutions ShortcutTraditional Approach When it comes to problem-solving, we have always been using conditional statements since we started programming. The most well-known are: if: Used to execute a block of code if a specific condition is met else: When the same co...56 readsJavaScript
Swapnil Bawaneswapnilbawane.hashnode.dev·Mar 21, 2023Understanding Callback Functions - for beginners [JavaScript]Introduction: I was confused at first about what callback functions mean so I tried a few simple examples to understand what it does. In this article we will try to see with the same examples what callback functions are and how are they written. Defi...1 like·74 readsJavaScript
Swapnil Bawaneswapnilbawane.hashnode.dev·Mar 16, 2023Understanding Basics of Reduce in JavaScriptWhat we will cover: Note: This article is updated with corrections about truthy and falsy values In the previous article, we read about map, filter and find functions, in this article, we will first see how reduce works with a simple example and then...3 likes·137 readsJavaScript
Yash Shrivastavaseemyblog.hashnode.dev·Mar 16, 2023Let understand map function in Javascript.What is a Map in JavaScript? Map is a collection of key/value pairs that can use any type of data as a key or a value and remember the order of its entries. It is used to iterate over all the elements in an array, which results in a new array. In oth...1 like·118 readsJavaScript
Gautam Balamuraligautam-balamurali.hashnode.dev·Mar 14, 2023Reduce() Your Code, Not Your Pizza🍕: One Line to Rule Them Allintroduction Arrays are a fundamental data structure in JavaScript, and the ability to perform complex operations on them is essential for any developer. One powerful tool for manipulating arrays is the reduce() method, which enables you to perform c...61 likes·341 readsES6