Tag: 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 …
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 …
Recursion is an important programming concepts. Recursion can be used to simplify your algorithm implementation but at a cost of possible stack-over-flow pitfalls. This tutorial will provide a simple-to-follow …