wiktormadera

Zad2JS

Nov 27th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const predkoscSwiatla = 299792458
  2. const jednostka = 'm/s'
  3. const prawda = true
  4.  
  5. const typPredkoscSwiatla = typeof predkoscSwiatla
  6. const typJednostka = typeof jednostka
  7. const typPrawda = typeof prawda
  8.  
  9. document.write(`
  10.     Prędkość światła wynosi ${predkoscSwiatla} i jest typu ${typPredkoscSwiatla} <br>
  11.     Jej jednostka to ${jednostka} o typie ${typJednostka}<br>
  12.     Prawda (${prawda}) jest typu ${typPrawda}<br>
  13. `)
Add Comment
Please, Sign In to add comment