Mastering JavaScript Fundamentals: A Starter's Handbook
for..in v/s for...of:
By using the for..in i get the indexes only but with the help of those indexes i can get the values at that index.
By using the for...of I can only get the value only values directly I don’t get the indexes.
<script>
let ar...
vaishnavidevdiary.hashnode.dev2 min read