##1. はじめに
本記事では、JavaScriptの
「演算」
について記載する。
##2. 演算とは?
:::note
計算すること。運算。
:::
:::note
数学で、ある集合の要素間に一定の法則を適用して、他の要素を作りだす操作。
二数間に加法・減法を適用してその結果を出す二項演算など。
:::
##3. 四則演算と余り
###足し算「+」
:::note
console.log(10 + 3);
:::
###引き算「-」
:::note
console.log(10 - 3);
:::
###掛け算「×」
:::note
console.log(10 * 3);
:::
###割り算「÷」
:::note
console.log(10 / 3);
:::
###余り「%」
:::note
console.log(10 % 3);
:::
##4. 実演
実際に四則演算の結果をデベロッパーツールで検証してみる。
###足し算「+」
index.js
console.log(10 + 3);
###引き算「-」 ```index.js console.log(10 - 3); ``` ![スクリーンショット 2021-09-28 13.41.32.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/662822/0dc3a609-943e-2393-d57f-b20d8fe5c6b3.png) 10-3の引き算なので、出力結果は7となる。 ###掛け算「×」 ```index.js console.log(10 * 3); ``` 10×3の掛け算なので、出力結果は30となる。 ###割り算「÷」 ```index.js console.log(10 / 3); ``` ![スクリーンショット 2021-09-28 13.43.30.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/662822/6de8870d-fff2-12f9-815e-0a356368cb73.png) 10÷3の割り算なので、出力結果は3.33(以下小数点)となる。 ###余り「%」 ```index.js console.log(10 % 3); ``` ![スクリーンショット 2021-09-28 13.44.44.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/662822/aaa2535a-179f-e7d9-66da-6f686ab394e3.png) 10÷3の割り算での余りを求められているので、出力結果は1となる。 ##5. おわりに 次項:[はじめてのJavaScript③ 「変数」](https://qiita.com/Stack_up_Rising/items/239b7a5672b2391825d3)へ続く。