10.
Can you access individual characters of a string as if it were an array in JavaScript?
Yes
No
Only if the string is converted into an array
Only if the string is enclosed in square brackets []
Correct: A
Yes, in JavaScript, you can access individual characters of a string by using square brackets and the index position of the character. Strings in JavaScript are treated as arrays of characters, so you can manipulate and access individual characters just like you would with an array.