Month: May 2022

How Authentication works in REST APIs ?

Hey everyone 👋🏻, In this article, let us learn about more about REST APIs. This is the second article on the topic REST API. The first article on this topic can be read by clicking on the below link : https://dev.to/thenerdydev/what-is-a-rest-api-288l How authentication works in REST API ? So we again have our client and…

Top 10 Tools for Web Design

Are you looking for magic tools to ease out your design process ? Well, your search ends here. In this article, I am going to present you 10 tools that are a MUST to ease out your design process and make your overall workflow super efficient. With me ? Amazing. Here we go. The first tool is:…

Demystifying Closures in JavaScript

Hey guys 👋🏻, In this article, let us talk about Closures in Javascript. In this article, we will understandâś” What are Closures ?âś” Code Example with explanation. âś” Conclusion What are Closures ? Before understanding what a closure is, let us revisit the concept of functions. From what we know about functions in JavaScript is…

HTML Tags that you might not know

In this article, let us see some of the awesome but rarely used HTML tags that could be helpful in your new projects. 1. <details> tag The <details> tag is used to specify additional details that the user can open and close on demand. So this means that the user can hide or show some information behind…

Learn React with one BIG Project [NOTES included] – Demo and Video Link

Hey everyone , I created a full fledged video to help others in learning React with ease. The video includes : 1. Whiteboard Explanations for every concept that we use in the video. 2. NOTES will be also be given for future reference and I believe short notes help in recalling the concepts easily because…

Beginner JavaScript – 7 – Introduction to Data Types

Hey everyone 👋🏻, In this article, let us discuss about the basic introduction to Data Types in JavaScript. This is the seventh part of my Beginner JavaScript Series on Dev. Data Types in JavaScript – A complete picture Any variable that we define in JavaScript has a data type. For example, if you have a sentence then…

Best FREE resources for learning ES6

Hey everyone 👋🏻, In this article, I will share some of the BEST FREE resources for learning ES6 along with the links to those articles. ES6 let – https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let const – https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const Variables and Scoping in ES6 –http://2ality.com/2015/02/es6-scoping.html Template Literals – https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals Arrow Function Expressions – https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions Arrow Functions VS Normal Functions – http://exploringjs.com/es6/ch_arrow-functions.html#sec_arrow-func-vs-normal-func for-of loop – https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for…of default parameters – Using Default Parameters in ES6 named…

New FULL Web Developer Course on YouTube

I decided to create a full Web Developer Course that will cover all the technologies that you need to kickstart your Full Stack Developer Journey. No bullshit, everything practical and relevant will be covered. We will delve into following topics – Check out the first video of this series where we cover the introduction to…

JavaScript methods for finding elements

Hey guys, Welcome back to a new article ! In this article, we will learn about different JavaScript methods that we can make use of for finding elements in an array. Arrays, as we know, is a data structure that is one of the key building blocks that we make use of for building data-based…

JavaScript – toLowerCase and toUpperCase methods

Hey guys, I am back with a new article. In this article, let us learn about simple methods that have in JavaScript using which we can convert a given string to its uppercase and its lowercase representation respectively. So without a further ado, let’s get started. Introduction So we have the JavaScript’s toLowerCase method that returns a…