0
0

More than 3 years have passed since last update.

JavaScript 四則演算

Posted at

四則演算 まとめ

//足し算
console.log(4+2);

//引き算
console.log(4-2);

//掛け算
console.log(4*2);

//割り算
console.log(4/2);

//余り
console.log(4%2);

結果

スクリーンショット 2021-06-09 20.10.41.png

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