-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParametroValRef.html
46 lines (36 loc) · 1.31 KB
/
ParametroValRef.html
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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
</head>
<body>
<script>
function parametroPorReferencia(pObjeto)
{
pObjeto.propriedade = 100;
document.write('<p>Chamada interna da função</p>');
document.write(pObjeto.propriedade);
}
function parametroPorValor(pNumero)
{
pNumero = 10;
document.write('<p>Chamada interna da função</p>');
document.write(pNumero);
}
document.write('<p>Variável por referência</p>');
let objeto = {propriedade:1};
document.write('<p>Antes chamada função</p>');
document.write(objeto.propriedade);
parametroPorReferencia(objeto)
document.write('<p>Depois chamada função</p>');
document.write(objeto.propriedade);
document.write('<p>Variável por valor</p>');
let numero = 5;
document.write('<p>Antes chamada função</p>');
document.write(numero);
parametroPorValor(numero);
document.write('<p>Depois chamada função</p>');
document.write(numero);
</script>
</body>
</html>