描述
此方法添加两个或更多字符串并返回结果字符串。
用法
下面给出的是concat()JavaScript 的方法。我们可以使用 CoffeeScript 代码中的相同方法。
string.concat(string2, string3[, ..., stringN]);
示例
下面的例子演示了使用concat()CoffeeScript 代码中的 JavaScript 方法。将此代码保存在名称为的文件中string_concat.coffee
str1 = "Hello how are you. "
str2 = "Welcome to Tutorials Point."
str3 = str1.concat str2
console.log "Concatenated String:" + str3
打开command prompt并编译 .coffee 文件,如下所示。
c:\> coffee -c string_concat.coffee
在编译时,它会为您提供以下 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);
现在,打开command prompt再次运行 CoffeeScript 文件,如下所示。
c:\> coffee string_concat.coffee
在执行时,CoffeeScript 文件产生以下输出。
Concatenated String:Hello how are you. Welcome to Tutorials Point.
相关用法
- CoffeeScript String charAt()用法及代码示例
- CoffeeScript String charCodeAt()用法及代码示例
- CoffeeScript String slice()用法及代码示例
- CoffeeScript String toUpperCase()用法及代码示例
- CoffeeScript String toLocaleUpperCase()用法及代码示例
- CoffeeScript String match()用法及代码示例
- CoffeeScript String lastIndexOf()用法及代码示例
- CoffeeScript String substr()用法及代码示例
- CoffeeScript String split()用法及代码示例
- CoffeeScript String toLowerCase()用法及代码示例
- CoffeeScript String search()用法及代码示例
- CoffeeScript String localeCompare()用法及代码示例
- CoffeeScript String toLocaleLowerCase()用法及代码示例
- CoffeeScript String indexOf()用法及代码示例
- CoffeeScript Date setHours()用法及代码示例
- CoffeeScript Date setUTCFullYear()用法及代码示例
- CoffeeScript Date getDay()用法及代码示例
- CoffeeScript Date getDate()用法及代码示例
- CoffeeScript Date getYear()用法及代码示例
- CoffeeScript Math pow()用法及代码示例
注:本文由纯净天空筛选整理自 CoffeeScript String - concat()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。