Category: javascript
Same Email addresses can have different forms for example, in the format of “username@domain” – the username part can have the optional dots to separate. The following email addresses …
We all know the Fibonacci function is defined as F(N) = F(N – 1) + F(N – 2) and the terminating conditions are F(1) = 1 and F(0) = …
How to Deep Clone an Object in Javascript/NodeJs There are three ways to clone an object/variable in Javascript/NodeJs: Recursive, JSON, and Message Channel. Deep Clone Object using Recursive Algorithm …
The CoinTools Chrome Extension has an important feature which is the Alt+Q query of the cryptocurrency. This feature can be easily extracted to a Chrome Bookmark Tool. The Cryptocurrency …
The Hamming Distance is the number of different symbols between two strings/numbers (equal length). It can be also considered as the number of changes required to convert from one …