Guest User

Untitled

a guest
Feb 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var Zosia = {
  2. wzrost: 172,
  3. przywitaj: function(imie){
  4. return "Cześć " + imie + "!";
  5. },
  6. pochwal_sie_wzrostem: function(){
  7. return "Moj wzrost to: " + this.wzrost + "cm!";
  8. }
  9. }
  10. // wywołanie przez metodę na obiekcie - nazwaObiektu.nazwaFunkcji(argumentyFunkcji)
  11. Zosia.przywitaj("Piotrek"); // "Cześć Piotrek!"
  12. Zosia.pochwal_sie_wzrostem(); // "Moj wzrost to: 172cm!"
Add Comment
Please, Sign In to add comment