JavaScript Concepts
Imperative traverse
a loop where it starts and ends. how the loop is increment and what's the operation, we declare all of these. this is the imperative traversing. e.g
const numbers = [2, 5, 6, 7, 89, 100];
let sum = 0;
for (let i = 0; i < numbers....
shahbaj.hashnode.dev2 min read