I am using chrome browser inspector to examine some javascript arrays. I notice that certain arrays (that are being generated by a library that I am using - three.js
via a-frame
) are represented with lowercase letters next to the value.
Please see below an example - you can see the lower case cs that accompany each value;
And here is one that I have generated myself for comparison - rather than these cs there is a generic object representation. This is what I am accustomed to;
Why do those letters appear? What is the difference between these arrays?
I ask because 1. I am curious and 2. I am seeing different behaviour between these 2 types of array and am wondering whether this is an indication of a different format that I am not aware of.
If there is a difference that people are aware of, I wonder whether its possible to convert one to the other quickly? So that I can eliminate that as a reason for any bugs?
Thanks as ever for any advice, If you need more information to answer, please let me know.