0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JavaScript勉強ログ 文字列の書き方

Posted at

文字列の書き方は3種類
'文字列'
"文字列"
`文字列`

・文字列の中でシングルクォートを使う場合

str = " ' ";
str = ' \' ';

・改行を入れたい時

str = '文字列を\nここで改行';
str = `文字列を
ここで改行`;

バッククォートを使う場合は直接改行が入れられる。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?