What does “[Ljava.lang.Object;@” mean?

App script has underlying data structure built up on java…Ljava.lang….. represents object notation in Java to indicate any object such as Array,JSON in GAS.To get actual value try toString() (or) JSON.Stringify() and check whether you have a value.

Leave a Comment