Advertisement
WiktoriaRatajczyk

JavaScript1-1

Nov 23rd, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let zmienna1 = "Wiktoria";
  2. document.write (typeof zmienna1);
  3. document.write (". ");
  4. let zmienna2 = 19;
  5. document.write (typeof zmienna2);
  6. document.write (". ");
  7. let zmienna3 = true;
  8. document.write (typeof zmienna3);
  9. document.write (". ");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement