get scale of a child

I need to get transform.scale of child.

how can I get a scale of a child, because this dont work…
error (this get the first transform (transform of the father), but I need of child transform).

transform.GetComponentInChildren (Transform).transform.localScale
this return to father

You can en umerate a transform to get its children.

foreach(Transform child in transform) //cs
for(var child : Transform in transform) //us/js

(With reservations for syntax issues)