1
1

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】関数の定義4種類

Posted at
main.js

function getTryangle1(base, height) {
    return base * height / 2;
}
console.log(`三角形の面積: ${getTryangle1(5, 2)}`);

var getTryangle2 = new Function('base', 'height', 'return base * height / 2;');
console.log(`三角形の面積: ${getTryangle2(5, 2)}`);

var getTryangle3 = function(base, height) {
    return base * height / 2;
};
console.log(`三角形の面積: ${getTryangle3(5, 2)}`);

let getTryangle4 = (base, height) => {
    return base * height / 2;
};
console.log(`三角形の面積: ${getTryangle4(5, 2)}`);

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?