-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncao_construtora.html
42 lines (33 loc) · 1010 Bytes
/
funcao_construtora.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel">
let Carro = function (){
this.cor = 'Amarelo'
this.modelo = 'Chevette'
this.velocidadeAtual = 0
this.velocidadeMaxima = 180
this.acelerar = function () {
// this.velocidadeAtual += 10
let velocidade = this.getVelocidadeAutal() + 10
this.setVelocidadeAtual(velocidade)
}
this.getVelocidadeAutal = function(){
return this.velocidadeAtual
}
this.setVelocidadeAtual = function (velocidadeAtual){
this.velocidadeAtual = velocidadeAtual
}
}
let carro = new Carro()
console.log(`A velocidade atual é ${carro.getVelocidadeAutal()}`)
carro.acelerar()
console.log(`A velocidade atual é ${carro.getVelocidadeAutal()}`)
</script>
</head>
<body>
<div id="output"></div>
</body>
</html>