FrontendInterviews.dev

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?

Select an option and submit your answer.
Next Problem