#web-development
Read more stories on Hashnode
Articles with this tag
In short: Promise.all: Returns all resolved values or first rejected. Promise.any: Returns first resolved or aggregated all errors Promise.race:...
Git, a powerful version control system, lies at the heart of modern software development. It enables seamless collaboration, efficient code...
The window object is supported by most modern browsers. It represents the browser window. The window is the root object and every other javascript...
1. indexOf inputStr.indexOf(str) - returns first occurrence of mentioned str in given inputStr inputStr.indexOf(str, 10) - returns first occurrence of...