My favorites
▼
|
Sign in
lineadecodigo
Web Code Samples in spanish
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
lineadecodigo_web
/
WebContent
/
scripting
/
javascript
/
objetos
/
objeto-rectangulo.html
r480
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Objeto Rectangulo</title>
</head>
<body>
<h1>Objeto Rectangulo</h1>
Ejemplo de cómo crear un método dentro de una clase javascript
<script type="text/javascript"><!--
function rectangulo(base,altura){
this.base = base;
this.altura = altura;
this.calcularArea = function() { return this.base*this.altura; };
}
var r1 = new rectangulo(2,6);
alert("Un rectangulo de " + r1.base + "x" + r1.altura + " tiene un área de " + r1.calcularArea());
--></script>
<br><br>
<hr>
Artículo disponible en: <a href="http://lineadecodigo.com/javascript/crear-un-objeto-con-metodos-en-javascript/">http://lineadecodigo.com/javascript/crear-un-objeto-con-metodos-en-javascript/</a><br/>
<a href="http://lineadecodigo.com" title="Linea de Codigo">lineadecodigo.com</a>
</body>
</html>
Show details
Hide details
Change log
r268
by vcuervo on Aug 8, 2010
Diff
Crear un objeto con métodos
Go to:
...t/objetos/objeto-rectangulo.html
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 1013 bytes, 34 lines
View raw file
Powered by
Google Project Hosting