Arnab Chakraborty has Published 4 Articles

Example of a circular reference in Javascript

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Apr-2023 12:17:28

1K+ Views

Circular referencing is an idea when an object directly or indirectly refers to itself back. It creates a closed loop. Like other programming languages, javascript also faces this problem of circular referencing. In this article, we shall cover a few examples of different circular referencing modes in javascript. Direct Circular ... Read More

How to enable a strict mode in javascript?

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 11:37:42

125 Views

In JavaScript, there are two different programming paradigms. The sloppy mode, sometimes referred to as the simple mode, is activated by default. We don't have to write the code strictly according to guidelines in this manner. On the other side, there is also the stringent mode. This setting allows the ... Read More

How to use finally on promise with then and catch in Javascript?

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 11:27:04

827 Views

Javascript asynchronous programming uses a promise object which does not block the execution of the current flow but informs the compiler that there is something that is not completed yet, and whenever it completes it returns a signal to the system. There are mainly two possibilities. Either the promise object ... Read More

How to Create GUID / UUID in JavaScript?

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 11:21:05

9K+ Views

The Globally Unique Identifier (GUID) or (Universally Unique Identifier) is a 16-byte or 128- bit binary value that is used as an identifier standard for software construction. This 128-bit number is represented in a human-readable format by using the canonical format of hexadecimal strings. One example is like: de305d84-75c4-431d-acc2-eb6b0e5f6014. In ... Read More

1
Advertisements