Arnab Chakraborty

Arnab Chakraborty

Corporate Trainer

About

Prof. Arnab Chakraborty is a Calcutta University alumnus with B.Sc. in Physics Hons Gold medalist, B. Tech and M. Tech in Computer Science and Engineering has twenty-six+ years of academic teaching experience in different universities, colleges and thirteen+ years of corporate training experiences for 170+ companies and trained 50,000+ professionals. He has also completed MBA from Vidyasagar University with dual specialization in Human Resource Management and Marketing Management. He is NLP and PMP trained, "Global DMAIC Six Sigma Master Black Belt" certified by IQF (USA). He is certified by ISA (USA) on "Control and Automation System". He is "Global ITIL V3 Foundation" certified as awarded by APMG (UK). Qualified for "Accredited Management Teacher" by AIMA (India). "Star Python" Global Certified from Star Certification (USA). "Certified Scrum Master (CSM)" Global Certification from Scrum Alliance (USA). He is also empaneled trainer for multiple corporates, e.g. HP, Accenture, IBM etc

3 Articles Published

Articles by Arnab Chakraborty

3 articles

How to enable a strict mode in javascript?

Arnab Chakraborty
Arnab Chakraborty
Updated on 04-Apr-2023 168 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 environment to have some rigid constraints. Strict mode has different meanings than regular code and is not a subset of sloppy mode. This article will explain how to enable strict mode in JavaScript and will also go over some of the features of "Strict" Mode. Syntax Different scopes can allow ...

Read More

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

Arnab Chakraborty
Arnab Chakraborty
Updated on 04-Apr-2023 2K+ 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 will complete successfully, or it will stop by returning an exception. To handle exceptions coming from promise objects the catch() methods are used. In try-catch methods also we can use another block named ‘finally’. This will execute no matter what is done previously. For promises also we can use the ...

Read More

How to Create GUID / UUID in JavaScript?

Arnab Chakraborty
Arnab Chakraborty
Updated on 04-Apr-2023 12K+ 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 this article, we shall cover how we can use javascript functionality to generate GUID or UUID. There are a few different methods, covered one by one: By using random number generation Example function generate_uuidv4() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { ...

Read More
Showing 1–3 of 3 articles
« Prev 1 Next »
Advertisements