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)「.innerHTML」と「Math.floor()」について

Last updated at Posted at 2020-11-20

例えば
addTaxDom.innerHTML = Math.floor(inputValue * 0.1);
この場合、
addTaxDomは、ブラウザ上の金額を表示する「場所」を示しているにすぎず、
あくまでそこに計算結果(inputValue * 0.1)が「表示」されているだけ。
addTaxDomに数値が「定義」されているわけではない!←:fast_parrot:

これをprofitDom.innerHTML = Math.floor(●●)で、●●を引き算の形にしたいのであれば、
const tax = Math.floor(inputValue * 0.1);で、計算式を一旦適当なconst○○に入れて、
消費税:addTaxDom.innerHTML = tax
儲け :profitDom.innerHTML = Math.floor(inputValue - tax);
とする。
Rubyの代入感覚で考えていると、ミスしてしまう落とし穴だー:thinking:

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?