11
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

文字列の連結

Last updated at Posted at 2025-03-15

「+」記号を用いると、文字列同士を連結することができます。
例えば、"Hello" + "world"とすると、"Helloworld"という1つの文字列になります。

qiita.js
console.log("Hello"+"World");
console.log("A"+"B"+"C");
出力結果/コンソール
Helloworld
ABC

⽂字列と数値の違い

しつこいですが、ここでも文字列と数値の違いをおさらいしておきましょう。
"3" + "5""35"という文字列になりますが、3 + 58になります。
「文字列と数値は別物」ということをしっかり意識しましょう。

qiita.js
console.log("3"+"5");
console.log(3+5);
出力結果/コンソール
35
8
11
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?