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?

More than 5 years have passed since last update.

JavaScript (文字列と数値)

Last updated at Posted at 2019-10-02

#JavaScriptとは

JavaScriptはWebに特化したプログラミング言語の1つで、動的なWebページの制作などに用いられます。

###console.log()
()に入力された文字をコンソールに出力する。
####文字列
出力させたいテキストをダブルクォーテーション(")で囲む。
console.log("〇〇");
文末には必ずセミコロン(;)を付ける。
####コメントアウト
コメントをみなされ、web上には表示されない。
どのような意味を持つコードであるかを記すメモに使われる。
文頭に「//」と書く。

//「こんにちは」と出力する。
console.log("こんにちは");

###数値
文字列と違い、クォーテーションで囲まない。
計算することができる。
+ - * / 数値と記号はすべて半角で記述する。
(**%**を使うと、割ったときの余りを求められる。)

//文字列を出力
console.log("3+2");
//数値を出力
console.log(3+2);

####文字列の連結
「+」記号を用いると、文字列同士を連結することができる。
「"天然"+"水"」とすると「"天然水"」という一つの文字列になる。

//文字列の連結
console.log("天然"+"");
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?