console.log("Start");
setTimeout(() => {
console.log("Timeout");
}, 0);
Promise.resolve().then(() => {
console.log("Promise 1");
}).then(() => {
console.log("Promise 2");
});
console.log("End");
predict the output
check array elements are same or not
what is debounce
questions on pagination
question on infinte scrolling
react question given an array, filter the data based on user input in search bar and show only that name