I'm trying to return the string that called the function.
But it doesn't return the string… it returns an array.
String.prototype.testing = function testing() {
if (this === "what") {}
return this //Should return - this is a string
}
x = "this is a string"
y = x.testing()
console.log(y)