All, Quick question... can someone explain how LEDS.showColor() work?

All,
Quick question…
can someone explain how LEDS.showColor() work?
does this write this into the leds array? I ask because I cant read back anything from the array
Thanks

showColor does not modify the array on the Arduino, it just sends color codes out to the LED strip.

If you want to modify the array, try fill_solid( leds, NUM_LEDS, color);

Thanks Mark