Chaîne CoffeeScript - concat ()

La description

Cette méthode ajoute au moins deux chaînes et renvoie la chaîne résultante.

Syntaxe

Voici la syntaxe de concat()méthode de JavaScript. Nous pouvons utiliser la même méthode à partir du code CoffeeScript.

string.concat(string2, string3[, ..., stringN]);

Exemple

L'exemple suivant montre l'utilisation de concat()méthode de JavaScript dans le code CoffeeScript. Enregistrez ce code dans un fichier avec le nomstring_concat.coffee

str1 = "Hello how are you. "
str2 = "Welcome to Tutorials Point."
str3 = str1.concat str2
      
console.log "Concatenated String :" + str3

Ouvrez le command prompt et compilez le fichier .coffee comme indiqué ci-dessous.

c:\> coffee -c string_concat.coffee

Lors de la compilation, il vous donne le JavaScript suivant.

// 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);

Maintenant, ouvrez le command prompt à nouveau et exécutez le fichier CoffeeScript comme indiqué ci-dessous.

c:\> coffee string_concat.coffee

Lors de l'exécution, le fichier CoffeeScript produit la sortie suivante.

Concatenated String :Hello how are you. Welcome to Tutorials Point.