Open in app

Sign In

Write

Sign In

Ashutosh Biswas
Ashutosh Biswas

Home

About

May 8, 2021

Let’s practice some JavaScript

In this article we will cover 10 common topics in JavaScript. So let’s get started. 1. Truthy and falsy values A value is considered truthy if it’s coerced to true in a Boolean context and other wise it’s a falsy value. There is handful of falsy values. And rest are truthy values. …

Javascript Practice

3 min read

Javascript Practice

3 min read


May 7, 2021

React for absolute beginners

The goal of this article is not write code in react. If you don’t have any idea on what is React, then this is right start. Just 10 easy to digest points. So let’s get started. 1. What is react React is basically just a very high level language than manipulating the DOM, a…

React

3 min read

React

3 min read


May 6, 2021

10 Random topics in JavaScript

— 1. Spread operator It’s a handy tool to get the contents out of an array or object. For example you can use it like below to copy an array: const array = [1, 2, 3] const copy = [...array]; console.log(copy) // [1, 2, 3] However note that it is a shallow copy…

JavaScript

2 min read

JavaScript

2 min read


May 5, 2021

Getting started with some commonly used methods of JavaScript

Arrays. How to use the sort method? The method has the following syntax: someArray.sort([compareFunction]) Omitting the compareFunction triggers default behavior which we will see at the end of this section. First let’s see how to use compareFunction because it is cool! compareFunction has two parameters: they represents any two arbitrary non-undefined elements of someArray of different indices(all…

JavaScript

3 min read

JavaScript

3 min read

Ashutosh Biswas

Ashutosh Biswas

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech