اتصال أسلوب (سلسلة)

إرجاع a سلسلة القيمة containing the concatenation of the الحالي سلسلة مع أي supplied سلاسل.

function concat([string1 : String [, ... [, stringN : String]]]]) : String

الوسيطات

  • string1, ... , stringN
    اختياري. String الكائنات أو literals إلى concatenate إلى the إنهاء of the الحالي سلسلة.

ملاحظات

The النتيجة of the concat أسلوب هو equivalent إلى: النتيجة = curstring + string1 + ... + stringN. The curstring refers the سلسلة stored في the كائن that supplies the concat أسلوب. A تغيير of القيمة في either a المصدر أو النتيجة سلسلة does not affect the القيمة في the غير ذلك سلسلة. If أي of the الوسيطات are not سلاسل, they are أول محول إلى سلاسل قبل being concatenated إلى curstring.

مثال

The following مثال illustrates the استخدم of the concat أسلوب when used مع a سلسلة:

function concatDemo()
{
   var str1 = "ABCD"
   var str2 = "EFGH";
   var str3 = "1234";
   var str4 = "5678";
   var s = str1.concat(str2, str3, str4);
   // Output: "ABCDEFGH12345678"
   return(s);
}

المتطلبات

Version 3

يتم تطبيق إلى:

كائن سلسلة

راجع أيضًا:

المرجع

عامل تشغيل الجمع (+)

كائن صفيفة

اتصال أسلوب (صفيفة)