1 List.of
Class to create a java ArrayList
.
Copy
var list = Ax.util.List.of("A", 1, 1.1, new Ax.sql.Date()); console.log(list)
[
"A",
1,
1.1,
{}
]
2 List.join
Returns a new String composed of copies of the elements of the List joined together with a copy of the specified delimiter.
Copy
var list = Ax.util.List.of("A", 1, 1.1); console.log(Ax.uti.List.join(list, ", ")
A, 1, 1.1