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 3 years have passed since last update.

JavaScript 関数

Last updated at Posted at 2021-07-15

#関数

関数はfunction 関数名(){}を使って表します。
表示する時は関数名();を使います。
ES6からだと少し書き方が変わってきます。
定数に関数を代入していくイメージを持って下さい。
const 定数名 = function() {

}
ですが、この省略形のアロー関数もあります。
const 定数名 = () => {

}

#スコープ

変数の使える範囲をスコープと言います。
関数の中で宣言した変数は関数の中でしか使うことができません。
これをローカルスコープと言い、このような変数をローカル変数と言います。

#引数

関数の中で引数を受け取ることができます。

function introduce(name) {
  console.log(name);
}

introduce("Takeshi"); // => "Takeshi"

#戻り値

returnを使って、戻り値を受け取ることができます。
また、returnは関数の処理を終わらせることができます。

function add(a,b) {
  return a + b;
}

var sum = add(3,5);
console.log(sum); // => 8

#最後に
初心者ですので、拙い文章や書き方だと思いますが、最後まで見て頂き
ありがとうございました。もし、ご指摘等がございましたらよろしくお願い致します。

0
0
3

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?