Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function calc() {
  2. var wys = document.getElementById("wys").value;
  3. var sz = document.getElementById("sz").value;
  4. var koszt = 12;
  5. document.getElementById("m2").value = (wys*sz) + ' m2';
  6. document.getElementById("kszt").value = (wys*sz)*koszt + ' zł';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement