Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the built-in iterables in Javascript?
Home
JavaScript
What are the built-in iterables in Javascript?
0
votes
asked
Oct 25, 2023
in
JavaScript
by
DavidAnderson
What are the built-in iterables in Javascript?
javascript-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 25, 2023
by
DavidAnderson
Below are the list of built-in iterables in javascript,
Arrays and TypedArrays
Strings: Iterate over each character or Unicode code-points
Maps: iterate over its key-value pairs
Sets: iterates over their elements
arguments: An array-like special variable in functions
DOM collection such as NodeList
...