mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
13 lines
214 B
Markdown
13 lines
214 B
Markdown
---
|
|
date: 20201112
|
|
id: 6214937f-f3bb-4231-a88a-fb542b668531
|
|
title: JavaScript Concatenation Operator
|
|
---
|
|
|
|
# Syntax
|
|
|
|
The + operator concatenates strings
|
|
|
|
``` javascript
|
|
console.log("con" + "cat" + "e" + "nate")
|
|
```
|