Skip to content
Advertisement

Add strings to an array of strings inside for loop using java

I have a for loop and I want to add strings to a string array inside that loop.

JavaScript

How can I achieve that? The output should look like this-

JavaScript

Advertisement

Answer

You can create the result array with a size that matches the registration array length, since you know you want to create one result for each registration entry. You then can loop over the registration array, build the stringResult for a given index, and assign it to the corresponding index of the result array.

JavaScript
Advertisement