Call object member function
|
|
<html> <head> <title>Example</title> </head> <body> <script type="text/javascript"> function createCar(color, doors, mpg) { var tempcar = new Object; tempcar.color = color; tempcar.doors = doors; tempcar.mpg = mpg; tempcar.showColor = function () { alert(this.color) };
return tempcar; }
var car1 = createCar("red", 4, 23); var car2 = createCar("blue", 3, 25); car1.showColor(); car2.showColor();
</script>
</body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
|
|