Descripción
Este método agrega dos o más cadenas y devuelve la cadena resultante.
Sintaxis
A continuación se muestra la sintaxis de concat()método de JavaScript. Podemos usar el mismo método del código CoffeeScript.
string.concat(string2, string3[, ..., stringN]);
Ejemplo
El siguiente ejemplo demuestra el uso de concat()método de JavaScript en el código CoffeeScript. Guarde este código en un archivo con el nombrestring_concat.coffee
str1 = "Hello how are you. "
str2 = "Welcome to Tutorials Point."
str3 = str1.concat str2
console.log "Concatenated String :" + str3
Abre el command prompt y compile el archivo .coffee como se muestra a continuación.
c:\> coffee -c string_concat.coffee
Al compilar, le da el siguiente JavaScript.
// Generated by CoffeeScript 1.10.0
(function() {
var str1, str2, str3;
str1 = new String("Hello how are you. ");
str2 = new String("Welcome to Tutorials Point.");
str3 = str1.concat(str2);
console.log("Concatenated String :" + str3);
}).call(this);
Ahora, abre el command prompt nuevamente y ejecute el archivo CoffeeScript como se muestra a continuación.
c:\> coffee string_concat.coffee
Al ejecutarse, el archivo CoffeeScript produce la siguiente salida.
Concatenated String :Hello how are you. Welcome to Tutorials Point.