# BrightScript cloning nested Associative Arrays

In favor of immutability, creating a copy of an argument is required. When it comes to nested structure, that could become tricky.

In BrightScript, cloning nested Associative Arrays is as simple as:

clonedAA = parseJson( formatJson( someNestedAA ) )
