
- CoffeeScript Tutorial
- CoffeeScript - Home
- CoffeeScript - Overview
- CoffeeScript - Environment
- CoffeeScript - command-line utility
- CoffeeScript - Syntax
- CoffeeScript - Data Types
- CoffeeScript - Variables
- CoffeeScript - Operators and Aliases
- CoffeeScript - Conditionals
- CoffeeScript - Loops
- CoffeeScript - Comprehensions
- CoffeeScript - Functions
- CoffeeScript Object Oriented
- CoffeeScript - Strings
- CoffeeScript - Arrays
- CoffeeScript - Objects
- CoffeeScript - Ranges
- CoffeeScript - Splat
- CoffeeScript - Date
- CoffeeScript - Math
- CoffeeScript - Exception Handling
- CoffeeScript - Regular Expressions
- CoffeeScript - Classes and Inheritance
- CoffeeScript Advanced
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript Useful Resources
- CoffeeScript - Quick Guide
- CoffeeScript - Useful Resources
- CoffeeScript - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CoffeeScript String - concat()
Description
This method adds two or more strings and returns the resultant string.
Syntax
Given below is the syntax of concat() method of JavaScript. We can use the same method from the CoffeeScript code.
string.concat(string2, string3[, ..., stringN]);
Example
The following example demonstrates the usage of concat() method of JavaScript in CoffeeScript code. Save this code in a file with the name string_concat.coffee
str1 = "Hello how are you. " str2 = "Welcome to Tutorials Point." str3 = str1.concat str2 console.log "Concatenated String :" + str3
Open the command prompt and compile the .coffee file as shown below.
c:\> coffee -c string_concat.coffee
On compiling, it gives you the following 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);
Now, open the command prompt again and run the CoffeeScript file as shown below.
c:\> coffee string_concat.coffee
On executing, the CoffeeScript file produces the following output.
Concatenated String :Hello how are you. Welcome to Tutorials Point.
coffeescript_strings.htm
Advertisements