Frontend
Interviews
.dev
Problems
654. for...of Iterates Code Points
Easy
•
...
Predict the output.
let
count
=
0
for
(
const
ch
of
"😀"
)
count
++
console
.
log
(
count
)
What is printed in the console?
1
2
0
TypeError
Submit Answer
Reveal Answer
Select an option and submit your answer.
Next Problem
Auto-advance on correct answer