print()
Description
Prints the array contents to the console (joined by comma) and returns the same array for
chaining.
Signature
print(): Array<T>
Example
[1, 2, 3].print();
// console: "1,2,3"
const total = [1, 2, 3]
.print() // logs: 1,2,3
.sum(); // 6