A look into for...in and for...of
for...in loop
Syntax
for (variableName in arrayName/objectName)
statement
The for-in loop will loop through the enumerable properties of a JavaScript iterable.This means that when you iterate over an array the variableName in the syntax will retur...
tushar-anekar.hashnode.dev2 min read