Sunday, August 16, 2015

Objects in JavaScript

In this article I would like to share with you sample program in JavaScript  that will teach you how to create an object and calling an object. Objects is a basic thing in Object Oriented Programming principle which contains properties and methods. The code is very simple and easy to understand.

If you have some questions about programming, about my work please send me an email at jakerpomperada@gmail.comand jakerpomperada@yahoo.com. People here in the Philippines can contact me at  my mobile number 09173084360.

Thank you very much and Happy Programming.





Sample Program Output


Program Listing

<html>
    <head>
        <title> Objects in JavaScipt</title>
    <head>
        <style>
h1,h3  {
    font-family:arial;
color: blue;
   };
 </style>  
    <body>      
 <h1> Objects in JavaScript </h1>
 <br>
      <script>
            var person = {
                firstname : 'Jacob Samuel',
                lastname : ' Pomperada ',
                
                greet : function(persons_name) {
                    alert(' Hello ' + persons_name + ' How are you today? ');
                    },
                
                greet2 : function() {
                    alert('Hi ' + this.firstname  + ' ' +  this.lastname + ' God Bless you');
                } 
        };
            
            document.write('<h3> Persons First Name: ' + person.firstname + '</h3>');
            document.write('<br>');
            document.write('<h3> Persons Last Name: ' + person.lastname + '</h3>');
            person.greet('jacob');
person.greet2('jacob');
        </script>           
    </body>
</html>

No comments:

Post a Comment