print()
Description
Logs the current string to console.log and returns the
original string object, allowing method chaining afterwards.
Signature
print(): String
Example
"Hello".print(); // logs: Hello
"Hello".print().toUpperCase(); // still works as a string object