segue abaixo:
Negociacao.js
class Negociacao {
constructor(data, quantidade, valor) {
this._data = data
this._quantidade = quantidade
this._valor = valor
}
get volume() {
if(this._quantidade && this._valor) {
return this._quantidade * this._valor
}
return 0.0
}
get data() {
return this._data
}
get quantidade() {
return this._quantidade
}
get valor() {
return this._valor
}
simularFaltaThis() {
return quantidade
}
}
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Negociações</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
</head>
<body class="container">
<h1 class="text-center">Negociações</h1>
<form class="form">
<div class="form-group">
<label for="data">Data</label>
<input type="date" id="data" class="form-control" required autofocus/>
</div>
<div class="form-group">
<label for="quantidade">Quantidade</label>
<input type="number" min="1" step="1" id="quantidade" class="form-control" value="1" required/>
</div>
<div class="form-group">
<label for="valor">Valor</label>
<input id="valor" type="number" class="form-control" min="0.01" step="0.01" value="0.0" required />
</div>
<button class="btn btn-primary" type="submit">Incluir</button>
</form>
<div class="text-center">
<button class="btn btn-primary text-center" type="button">
Importar Negociações
</button>
<button class="btn btn-primary text-center" type="button">
Apagar
</button>
</div>
<br>
<br>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>DATA</th>
<th>QUANTIDADE</th>
<th>VALOR</th>
<th>VOLUME</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
</tfoot>
</table>
<script src="js/app/models/Negociacao.js"></script>
<script>
var n1 = new Negociacao(new Date(), 2, 100.0)
console.log(n1)
console.log(n1.data)
console.log(n1.quantidade)
console.log(n1.valor)
console.log(n1.volume)
console.log(n1.simularFaltaThis())
</script>
</body>
</html>
Resultado:
Negociacao {data: Sat Jul 29 2017 18:57:44 GMT-0300 (Hora oficial do Brasil), quantidade: 2, _valor: 100}_data: Sat Jul 29 2017 18:57:44 GMT-0300 (Hora oficial do Brasil) {}_quantidade: 2_valor: 100data: (...)quantidade: (...)valor: (...)volume: (...)__proto: Object
65 Sat Jul 29 2017 18:57:44 GMT-0300 (Hora oficial do Brasil)
2
100
200
<input type="number" min="1" step="1" id="quantidade" class="form-control" value="1" required>