![]() |
Web Development »
Client side scripting »
General
Beginner
License: The BSD License
Exploring OOPS - JavaScript Style: Part 1 - EncapsulationBy mastergauravThis article, 1st Part in the series of 3-articles, starts discussion on OOPS implementation in JavaScript. Starting with Encapsulation. |
Javascript, Architect, Dev, Design
|
||||||||||
|
Advanced Search |
|
|
|
||||||||||||||||
This article, 1st Part in the series of 3-article, starts discussion on OOPS implementation in JavaScript.
Note: This article is an adaption (may be a mirror) of the article originally posted at Edujini™ Eduzine™ here.
All the three articles of the series:
Obect Oriented Programming - as defined by Grady Booch - stands on three pillars:
Here, we explore how all three - Yes! All Three Pillars of OOPS - are implemented in JavaScript.
To get started, it is assumed that you are already familiar with basic JavaScript. If not you can look on the web for some tutorials on JavaScript 101 tutorials or the like. To be specific, the following fundamentals are assume:
var keyword.Object, Array, Boolean, Number, String and Function.While working with JavaScript, always keep in mind the following, as Gaurav Vaish (yes, that's me) calls them, "4-Sutras":
"In JavaScript, whenever you run into any problem related to implementation or structuring of the code, these four sutras will help you out", I say.
Encapsulation - in simplest terms - can be defined as putting the related items together. Structures in C is a way to implement encapsulation. Classes in C++, Java, C# etc is another way to implement encapsulation.
Let us see how encapsulation is implemented in JavaScript.
Gaurav's 4th Sutra comes into action here - "It's all about functions".
Let us define a data-type UserProfile that encapsulates the following three items:
username: Property to hold the username of the user.password: Property to hold the password of the user.authenticate: Method to authenticate the user. Returns true if successful, false otherwise.
Let us implement the UserProfile with a constructor that takes the two properties as parameters and initializes itself. Create a file UserProfile.js (strictly speaking, the filename doesn't really matter) with the following code.
/** * (C) 2008, Gaurav Vaish, Edujini Labs Pvt Ltd * http://www.edujini-labs.com */ function UserProfile(username, password) { this.username = username; this.password = password; this.authenticate = function() { if(this.username == 'gvaish' && this.password == 'edujini') { return true; } return false; } }
Notice the use of this keyword. Does it remind you of someting? Yes! You got it right... function is the way to implement the concept of class, or to speak - encapsulation.
Ok... so, how do we use this new data-type that we just defined? Let's create a HTML file that will serve as the playground for our case-studies around the UserProfile. Create a file UserProfile.html (again, filename is not important at all) with the following content:
1 <html> 2 <head> 3 <title>OOPS in JavaScript- Encapsulation</code> 4 <script language="'javascript'" type='text/javascript' src='UserProfile.js'></script> 5 <script language="'javascript'" type='text/javascript'> 6 /** 7 * (C) 2008, Gaurav Vaish, Edujini Labs Pvt Ltd 8 * http://www.mastergaurav.com 9 * http://eduzine.edujini-labs.com 10 */ 11 function validateUser() 12 { 13 var uname = document.getElementById('u').value; 14 var pwd = document.getElementById('p').value; 15 16 var e = document.getElementById('result'); 17 18 var u = new UserProfile(uname, pwd); 19 var result = u.authenticate(); 20 e.innerHTML = 'Result: ' + result; 21 } 22 </script> 23 </head> 24 <body> 25 26 Username: <input type='text' name='u' id='u' /> 27 <br/> 28 Password: <input type='password' name='p' id='p' /> 29 <br/> 30 31 <button onclick='validateUser(); return false;'>Login</button> 32 33 <div id='result'></div> 34 35 </body> 36 </html>
Let's just analyze the code that we just wrote.
We have designed a simple form comprising of inputs for username and password, and a button to trigger validation.
The function validateUser defined at line 11-21 triggers the validation by extracting the values of username and password (lines 13-14).
At line 18, UserProfile is instantiated. Notice a very important thing - the function definition has been used as the constructor. Yes! That's where functions are so important in JavaScript. The functions in JavaScript are higher order functions (similar to that in Smalltalk), that can be used to retain the state.
At line 19, we invoke the method authenticate that returns a value true or false depending upon what we enter in the form.
So, go ahead and try out with different combinations of username and password, and checkout the results!
In this article we learnt how encapsulation is implemented in JavaScript. To summarize, we explored the following:
this keyword within the type definition.The next step is look at the next articles on Inheritance and Polymorphism in JavaScript.
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 2 Aug 2008 Editor: |
Copyright 2008 by mastergaurav Everything else Copyright © CodeProject, 1999-2009 Web15 | Advertise on the Code Project |