私は関数を呼び出した文字列を返そうとしています。偽の場合、プロトタイプからの入力を返す方法
しかし、文字列を返しません...配列を返します。
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)
? –
xは関数を呼び出すものです...これはxとは考えられていませんか? –
xは「これは文字列です」 –