1Get C string equivalent
2
3 TL;DR -> Makes the string end with '\0'
4
5Returns a pointer to an array that contains a null-terminated sequence of
6characters (i.e., a C-string) representing the current value of the string
7object.
8
9This array includes the same sequence of characters that make up the value of
10the string object plus an additional terminating null-character ('\0') at the
11end.