11 lines
275 B
Plaintext
11 lines
275 B
Plaintext
=== Message
|
|
|
|
there's no need to call "toString()" on a string literal.
|
|
|
|
"XXX" is already a string, there's no need to call "toString()" on it.
|
|
|
|
"XXX" returns a string, there's no need to call "toString()".
|
|
|
|
"XXX" is an array of string, there's no need to call "toString()".
|
|
|