Nitish Phanse
Nitish Phanse
With ref to https://github.com/mixpanel/mixpanel-js/blob/master/src/mixpanel-core.js#L1398 This can be particularly useful if a website has a redirect to a particular page `window.location=some other url` after successfully logging in / or a successful...
### What are IIFE https://developer.mozilla.org/en-US/docs/Glossary/IIFE#:~:text=An%20IIFE%20(Immediately%20Invoked%20Function,soon%20as%20it%20is%20defined.&text=It%20is%20a%20design%20pattern,within%20the%20Grouping%20Operator%20()%20.
This page design is completely an open choice.. As long as it fits the theme of the site
Given a function as mentioned below. Write a utility, promisify, where the usage is as explained below ```javascript function asyncFunction(a, b, callback) { const isError = Math.random() > 0.7; setTimeout(()...
```javascript function pipe() { // Implement code here } const double = (x) => x * 2; const square = (x) => x * x; const cube = (x) =>...
### Introduction React native has built a pretty decent ecosystem around tooling and profling an app in a debug / dev mode. We often end up using dev tools from...